diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-28 22:07:12 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-28 22:07:12 +0000 |
| commit | 87c5f40b33fb7175fdd77cdbb82810baf9b31a00 (patch) | |
| tree | 2dc922dce9bb76d6707a23c5bed23ddbd36ff7e9 /cscript | |
| parent | 8cc5cec68df205805afb43a13ed588641a1376df (diff) | |
Err, we're supposed to be building with waf.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ def build(target, options): - cmd = './configure --prefix=%s ' % target.directory + cmd = './waf configure --prefix=%s ' % target.directory target.append_with_space('LIBS', '-lboost_system') target.append_with_space('LIBS', '-lboost_filesystem') target.command(cmd) - target.command('make -j8 V=1') - target.command('make install') + target.command('./waf') + target.command('./waf install') |
