summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-14 23:33:09 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-14 23:33:09 +0100
commit009e07f1afe3290dabaf389c6b2909fee9e6fa2e (patch)
tree3fa749a4226d85e319d480384bc80bca74e77726 /cscript
parent46bcd0527dd5424b14e2b6db139fe1e70df5113b (diff)
Disable building of tests on --static Linux package builds.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index df370a29..38ac40dd 100644
--- a/cscript
+++ b/cscript
@@ -6,7 +6,7 @@ def dependencies(target):
def build(target, options):
cmd = './waf configure --prefix=%s' % target.work_dir_cscript()
if target.platform == 'linux':
- cmd += ' --static'
+ cmd += ' --static --disable-tests'
elif target.platform == 'windows':
cmd += ' --target-windows'
elif target.platform == 'osx':