summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-10-26 11:14:48 +0000
committerCarl Hetherington <cth@carlh.net>2014-10-26 11:14:48 +0000
commit32cb7e17f798ff21f613333bdaca1fae1aee3c84 (patch)
tree49563664114a3b43945b0b2879e4725af3a7f823 /cscript
parentaca26b2df02841b93203df9ca9b18bdc62a3ffbb (diff)
Don't build tests on centos.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/cscript b/cscript
index c81493a..03f4bf6 100644
--- a/cscript
+++ b/cscript
@@ -8,6 +8,8 @@ def build(target, options):
cmd += ' --enable-debug'
if target.platform == 'windows':
cmd += ' --target-windows --disable-tests'
+ if target.distro == 'centos':
+ cmd += ' --disable-tests'
target.command(cmd)
target.command('./waf build install')