diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-11-04 11:46:55 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-11-04 11:46:55 +0100 |
commit | 54f6ab21925f990a2f7ab49e6b1dbb1ebb2ae65a (patch) | |
tree | 2a14097577cfa0d7172e391ee6946d59e79003b0 | |
parent | 97563faaa37367c21bf29f965c208fdc0eeb186e (diff) |
forced --prefix for travis-ci
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 93f5822eb..c3bbbd14f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ before_install: - sudo apt-get install -y build-essential make binutils gcc autoconf automake libtool pkg-config git libpcap-dev libgcrypt-dev libgpg-error-dev libjson-c-dev script: - git clone https://github.com/ntop/nDPI.git -- cd nDPI && ./autogen.sh --with-sanitizer --with-only-libndpi && make install DESTDIR="$(realpath ./_install)" && cd .. -- make NDPI_WITH_GCRYPT=yes CUSTOM_LIBNDPI=./nDPI/_install/usr/local/lib/libndpi.a ENABLE_DEBUG=yes ENABLE_SANITIZER=yes all +- cd nDPI && ./autogen.sh --prefix=/usr --with-sanitizer --with-only-libndpi && make install DESTDIR="$(realpath ./_install)" && cd .. +- make NDPI_WITH_GCRYPT=yes CUSTOM_LIBNDPI=./nDPI/_install/usr/lib/libndpi.a ENABLE_DEBUG=yes ENABLE_SANITIZER=yes all - make clean -- make NDPI_WITH_GCRYPT=yes PKG_CONFIG_BIN=pkg-config PKG_CONFIG_PREFIX=./nDPI/_install/usr/local ENABLE_DEBUG=yes ENABLE_SANITIZER=yes all +- make NDPI_WITH_GCRYPT=yes PKG_CONFIG_BIN=pkg-config PKG_CONFIG_PREFIX=./nDPI/_install/usr ENABLE_DEBUG=yes ENABLE_SANITIZER=yes all |