Err, we're supposed to be building with waf.
authorCarl Hetherington <cth@carlh.net>
Thu, 28 Jan 2016 22:07:12 +0000 (22:07 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 28 Jan 2016 22:07:12 +0000 (22:07 +0000)
cscript

diff --git a/cscript b/cscript
index 22e1c880e828f90f67e6394c4504a69cf8ee854c..20b22ff4ef42adc0292b39295d9fea2dd73df5c6 100644 (file)
--- 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')