aboutsummaryrefslogtreecommitdiff
path: root/travis/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis/install.sh')
-rwxr-xr-xtravis/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/travis/install.sh b/travis/install.sh
index 78da24de..8126182b 100755
--- a/travis/install.sh
+++ b/travis/install.sh
@@ -74,9 +74,9 @@ PROJ_LIB=../nad src/multistresstest
cd ..
# autoconf build with grids and coverage
if [ $TRAVIS_OS_NAME == "osx" ]; then
- CFLAGS="-DPJ_SELFTEST --coverage" ./configure;
+ CFLAGS="--coverage" ./configure;
else
- CFLAGS="-DPJ_SELFTEST --coverage" LDFLAGS="-lgcov" ./configure;
+ CFLAGS="--coverage" LDFLAGS="-lgcov" ./configure;
fi
make -j3
make check