aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-11-16 14:59:48 -0500
committerJack Lloyd <[email protected]>2016-11-16 14:59:48 -0500
commit95764150587d037ed895bdef71d575eeebda9ce5 (patch)
treecdc7110924fe1d6ef8ea63d4512a5ee3e05f67d0 /src/scripts/ci
parent567d93fab2704fa538a861529c0fe719822b4ecd (diff)
Fix inverted conditional
Diffstat (limited to 'src/scripts/ci')
-rwxr-xr-xsrc/scripts/ci/travis/build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh
index 169799e42..0344fd892 100755
--- a/src/scripts/ci/travis/build.sh
+++ b/src/scripts/ci/travis/build.sh
@@ -50,7 +50,7 @@ elif [ "$BUILD_MODE" = "valgrind" ]; then
elif [ "${BUILD_MODE:0:5}" != "cross" ]; then
# Only use external libraries when compiling natively
- CFG_FLAGS+=(--with-bzip2 --with-lzma --with-sqlite --with-zlib --disable-modules=ffi)
+ CFG_FLAGS+=(--with-bzip2 --with-lzma --with-sqlite --with-zlib)
if [ "$BUILD_MODE" = "coverage" ]; then
CFG_FLAGS+=(--with-tpm)
@@ -79,6 +79,7 @@ if [ "${BUILD_MODE:0:6}" = "cross-" ]; then
CFG_FLAGS+=(--cpu=armv8-a --cc-abi-flags="-arch arm64 -stdlib=libc++")
fi
elif [ "$TRAVIS_OS_NAME" = "linux" ]; then
+ CFG_FLAGS+=(--disable-modules=ffi)
if [ "$BUILD_MODE" = "cross-arm32" ]; then
CC_BIN=arm-linux-gnueabihf-g++-4.8