summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorFred Wright <fw@fwright.net>2017-11-02 14:35:59 -0700
committerFred Wright <fw@fwright.net>2017-11-02 14:35:59 -0700
commit7e7c5478fbda652e2c2c8adaae62e11aed12d78b (patch)
treeba629122b7138c7576a5f898d47cb422826ee096 /.travis
parent2c01c135da36b464170830b7e062791d229baa2a (diff)
downloadgpsd-7e7c5478fbda652e2c2c8adaae62e11aed12d78b.tar.gz
Fixes broken Travis clang++ workaround.
Commit 66df9308 disabled C++ builds on Travis when using clang++, in order to get around an unresolved issue with __float128. Hovever, commit 2f6e5b67 broke the workround by adding an explicit qt=yes to SCONSOPTS. This wasn't immediately noticed, since that commit also broke the use of Qt4 altogether, and there is no case that builds with Qt5 and clang++. Fixing the Qt4 bug in commit 2c01c135 then reintroduced the old clang++ bug. This change removes the troublesome explicit qt=yes. TESTED: Will be once this change is pushed and picked up by Travis. It has no effect outside Travis.
Diffstat (limited to '.travis')
-rw-r--r--.travis/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/build.sh b/.travis/build.sh
index 32663029..40b672f2 100644
--- a/.travis/build.sh
+++ b/.travis/build.sh
@@ -17,7 +17,7 @@ SCONSOPTS="${SCONSOPTS} libdir=/usr/lib/${DEB_HOST_MULTIARCH}"
SCONSOPTS="${SCONSOPTS} gpsd_user=gpsd"
SCONSOPTS="${SCONSOPTS} gpsd_group=dialout"
SCONSOPTS="${SCONSOPTS} debug=yes"
-SCONSOPTS="${SCONSOPTS} qt=yes"
+### SCONSOPTS="${SCONSOPTS} qt=yes" # The default qt=yes must be overridable
if dpkg -s qtbase5-dev 1>/dev/null 2>&1; then
SCONSOPTS="${SCONSOPTS} qt_versioned=5"