summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-07 10:01:55 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-07 10:01:55 +0100
commitc7488f10cbde39bffb8ece2601005c515acbf3a3 (patch)
tree78b1a8df6f22b0a1908d1de7da10d729197ba3b0 /cscript
parentd28dd401ad47186e939e96068b7ece4f2b4418d9 (diff)
Fix configure on OS X
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/cscript b/cscript
index 9aea4e877..87e7551e4 100644
--- a/cscript
+++ b/cscript
@@ -14,6 +14,8 @@ def build(env, target):
cmd = './waf configure --prefix=%s' % env.work_dir_cscript()
if target.platform == 'windows':
cmd += ' --target-windows'
+ else if target.platform == 'osx':
+ cmd += ' --osx'
else if target.platform == 'linux':
cmd += ' --static'
env.command(cmd)