summaryrefslogtreecommitdiff
path: root/other/travis/autotools-script
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-12-11 20:38:26 +0000
committeriphydf <iphydf@users.noreply.github.com>2016-12-13 00:52:58 +0000
commit2dc2ac52b93e3a922337294c1e32f7bed794788f (patch)
tree860d532d00babbdf102b4ee706533d7e1daedf6f /other/travis/autotools-script
parent029c4fb83f66de62428593d86a6493400a8f4b27 (diff)
Fix `--enable-logging` flag in autotools configure script.
We also never really tested this, because we run make distcheck, which does another configure with default flags instead of the ones we passed. Fixes #317.
Diffstat (limited to 'other/travis/autotools-script')
-rwxr-xr-xother/travis/autotools-script4
1 files changed, 3 insertions, 1 deletions
diff --git a/other/travis/autotools-script b/other/travis/autotools-script
index cc536ab9..7d04c968 100755
--- a/other/travis/autotools-script
+++ b/other/travis/autotools-script
@@ -7,9 +7,11 @@
7 --with-libsodium-headers=$CACHE_DIR/include \ 7 --with-libsodium-headers=$CACHE_DIR/include \
8 --enable-daemon \ 8 --enable-daemon \
9 --enable-logging \ 9 --enable-logging \
10 --enable-ntox 10 --enable-ntox \
11 --with-log-level=TRACE
11 12
12# We use make instead of RUN $MAKE here, because the autotools build will only 13# We use make instead of RUN $MAKE here, because the autotools build will only
13# ever run natively on the Linux container, never on a Windows cross compilation 14# ever run natively on the Linux container, never on a Windows cross compilation
14# docker instance or an OSX machine. 15# docker instance or an OSX machine.
16make -j$NPROC -k
15make distcheck -j$NPROC -k 17make distcheck -j$NPROC -k