From 87c5f40b33fb7175fdd77cdbb82810baf9b31a00 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 28 Jan 2016 22:07:12 +0000 Subject: [PATCH 1/1] Err, we're supposed to be building with waf. --- cscript | 6 +++--- 1 file 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') -- 2.30.2