summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-28 21:01:14 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-28 21:01:14 +0000
commit0b4db4416242415847b4d69df9fb9314da080b93 (patch)
tree220114708027e101f2c514dc79054e038662d76a /cscript
parent2f5bd37bd585904159e72653c7a42b13c23d7af8 (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 e30b45e..22e1c88 100644
--- a/cscript
+++ b/cscript
@@ -1,7 +1,8 @@
def build(target, options):
cmd = './configure --prefix=%s ' % target.directory
- target.set('LIBS', "-lboost_system -lboost_filesystem")
+ 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')