From: Ruediger Meier Date: Thu, 17 Dec 2015 13:10:17 +0000 (+0100) Subject: travis: workaround env pollution, PYTHON_CFLAGS X-Git-Tag: v2.28-rc1~218 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=514f593060449f4df16fb7366dea1ed34bfbc115;p=thirdparty%2Futil-linux.git travis: workaround env pollution, PYTHON_CFLAGS Since a few days travis workers seem to export broken PYTHON_CFLAGS and automake's python detection fails. see https://github.com/travis-ci/travis-ci/issues/5301 Signed-off-by: Ruediger Meier --- diff --git a/.travis.yml b/.travis.yml index 6d322e4576..85a753d39f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,8 @@ before_install: - which $CC # workaround clang not system wide, fail on sudo make install - export CC=`which $CC` + # workaround travis-ci issue #5301 + - unset PYTHON_CFLAGS install: - source ./.travis-functions.sh