From: Ruediger Meier Date: Thu, 11 Aug 2016 15:30:20 +0000 (+0200) Subject: travis: fix OSX, glibtoolize could not find sed X-Git-Tag: v2.29-rc1~122 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=160eef814a95d74b2da6e55a87e0dfcd99f5eb5a;p=thirdparty%2Futil-linux.git travis: fix OSX, glibtoolize could not find sed Since a few days travis OSX seems to have a bad libtool package: $ glibtoolize --version /usr/local/bin/glibtoolize: line 406: /usr/local/Library/ENV/4.3/sed: No such file or directory Exporting SED is a simple fix. Otherwise we could have also re-installed libtool: brew uninstall libtool brew install libtool Signed-off-by: Ruediger Meier --- diff --git a/.travis-functions.sh b/.travis-functions.sh index 2b369f1b0d..6fcf019767 100755 --- a/.travis-functions.sh +++ b/.travis-functions.sh @@ -118,6 +118,9 @@ function osx_install_script --disable-ipcs \ --disable-write \ " + + # workaround: glibtoolize could not find sed + export SED="sed" } function osx_prepare_check