summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-06-06 23:15:22 +0100
committerCarl Hetherington <cth@carlh.net>2013-06-06 23:15:22 +0100
commitd28dd401ad47186e939e96068b7ece4f2b4418d9 (patch)
treec3bf8b822600f4a4c1b8fc5737ab7e5e4a5467f2 /cscript
parent10c5866265db6830a67748ea3e5567ceef94951b (diff)
Don't build statically on OS X
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index f3d532d57..9aea4e877 100644
--- a/cscript
+++ b/cscript
@@ -14,7 +14,7 @@ def build(env, target):
cmd = './waf configure --prefix=%s' % env.work_dir_cscript()
if target.platform == 'windows':
cmd += ' --target-windows'
- else:
+ else if target.platform == 'linux':
cmd += ' --static'
env.command(cmd)