summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 22:02:35 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 17:00:35 +0100
commit06cd0286838a7a8533bc60e849b37b218168bac0 (patch)
tree00b695ea19321e8bc417fafa84038d274c14cfff /cscript
parentd3dbfdaa9adfd6160854f6287e5c23063f024595 (diff)
Build correctly-suffixed libs (with -cth).
Diffstat (limited to 'cscript')
-rw-r--r--cscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/cscript b/cscript
index 22e1c88..20b22ff 100644
--- a/cscript
+++ b/cscript
@@ -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')