From 90586290a7dea4abbdee5d9bab4f4efa6d0e6448 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Fri, 15 Sep 2017 15:37:56 +0100 Subject: [PATCH] Problem: travis job uses custom build path Solution: remove it, dependencies are in the standard path --- .travis.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index a82b157c..27b3e82b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,13 +19,7 @@ addons: env: global: - - BUILD_PREFIX=$PWD/tmp - - CFLAGS=-I${BUILD_PREFIX}/include - - CPPFLAGS=-I${BUILD_PREFIX}/include - - CXXFLAGS=-I${BUILD_PREFIX}/include - - LDFLAGS=-L${BUILD_PREFIX}/lib - - PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig - - DISTCHECK_CONFIGURE_FLAGS="--with-libsodium --prefix=${BUILD_PREFIX}" + - DISTCHECK_CONFIGURE_FLAGS="--with-libsodium" before_install: - if [ $TRAVIS_OS_NAME == "osx" ] ; then brew install libsodium ; fi @@ -37,7 +31,7 @@ before_install: # Build and check this project script: -- ./autogen.sh && ./configure --with-libsodium --prefix=${BUILD_PREFIX} && make distcheck +- ./autogen.sh && ./configure --with-libsodium && make distcheck # Deploy tags before_deploy: