diff options
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,10 @@ def build(target, options): cmd = './waf configure --prefix=%s' % target.directory if target.platform == 'linux': cmd += ' --static' + if target.distro == 'centos': + # Centos builds using static boost, which means tests don't + # build as test/tests.cc defines BOOST_TEST_DYN_LINK + cmd += ' --disable-tests' elif target.platform == 'windows': cmd += ' --target-windows' target.command(cmd) |
