Only build tests on Ubuntu 18.04 as we need BOOST_TEST.
authorCarl Hetherington <cth@carlh.net>
Wed, 27 Mar 2019 00:23:49 +0000 (00:23 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 27 Mar 2019 00:23:49 +0000 (00:23 +0000)
cscript

diff --git a/cscript b/cscript
index f4be59f110e919d3785a478a3f99c98ca1f21f9c..603567654a6115ca9f039acd5cc2eeb914ae1316 100644 (file)
--- a/cscript
+++ b/cscript
@@ -46,14 +46,15 @@ def build(target, options):
         cmd += ' --jpeg=%s' % options['jpeg']
     if target.platform == 'linux':
         cmd += ' --static'
-        if target.distro == 'centos':
+        if not (target.distro == 'ubuntu' and target.version == '18.04'):
+            # We only build tests on Ubuntu 18.04
             cmd += ' --disable-tests'
-            if target.version == '7':
-                # Centos 7 ships with glibmm 2.50.0 which requires C++11
-                # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
-                # I worry that this will cause ABI problems but I don't have
-                # a better solution.
-                cmd += ' --force-cpp11'
+        if target.distro == 'centos' and target.version == '7':
+            # Centos 7 ships with glibmm 2.50.0 which requires C++11
+            # but its compiler (gcc 4.8.5) defaults to C++97.  Go figure.
+            # I worry that this will cause ABI problems but I don't have
+            # a better solution.
+            cmd += ' --force-cpp11'
         if target.distro == 'mageia' and target.version == '6':
             # Mageia 6 pulls the same stunt except it's libxml++ that requires C++11
             cmd += ' --force-cpp11'