diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-28 22:02:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-03 17:00:35 +0100 |
| commit | 06cd0286838a7a8533bc60e849b37b218168bac0 (patch) | |
| tree | 00b695ea19321e8bc417fafa84038d274c14cfff /cscript | |
| parent | d3dbfdaa9adfd6160854f6287e5c23063f024595 (diff) | |
Build correctly-suffixed libs (with -cth).
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') |
