summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 20:24:10 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-28 20:24:10 +0000
commit2f5bd37bd585904159e72653c7a42b13c23d7af8 (patch)
tree3dfa768d0e248124271457e30812f27e9bb4aeda /cscript
parent39a9dba8277840c8420a93ef644ce2cdbf443a22 (diff)
Try to fix cscript build.
Diffstat (limited to 'cscript')
-rw-r--r--cscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/cscript b/cscript
index 205d031..e30b45e 100644
--- a/cscript
+++ b/cscript
@@ -1,6 +1,7 @@
def build(target, options):
- cmd = 'LIBS="-lboost_system -lboost_filesystem" ./configure --prefix=%s ' % target.directory
+ cmd = './configure --prefix=%s ' % target.directory
+ target.set('LIBS', "-lboost_system -lboost_filesystem")
target.command(cmd)
target.command('make -j8 V=1')
target.command('make install')