summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 22:07:12 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-28 22:07:12 +0000
commit87c5f40b33fb7175fdd77cdbb82810baf9b31a00 (patch)
tree2dc922dce9bb76d6707a23c5bed23ddbd36ff7e9 /cscript
parent8cc5cec68df205805afb43a13ed588641a1376df (diff)
Err, we're supposed to be building with waf.
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')