diff options
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,9 @@ def build(env, target): cmd = './waf configure --prefix=%s' % env.work_dir_cscript() - if target.platform == 'windows': + if target.platform == 'linux': + cmd += ' --static' + elif target.platform == 'windows': cmd += ' --target-windows' env.command(cmd) env.command('./waf build install') |
