stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c79f6640bd957b0954ca08f759de0ffc2751eda7
commit c79f6640bd957b0954ca08f759de0ffc2751eda7 Author: Stefan Schmidt <[email protected]> Date: Wed Apr 18 09:24:18 2018 +0200 travis: fix install of packages on macOS Some recent OSX builds failed on Travis due to a change on the macOS image they are providing. The python package could not be installed. ==> Pouring [email protected]_3.sierra.bottle.1.tar.gz Error: The `brew link` step did not complete successfully The formula built, but is not symlinked into /usr/local Could not symlink bin/2to3-2 Target /usr/local/bin/2to3-2 is a symlink belonging to python. You can unlink it: brew unlink python --- .ci/ci-osx-deps.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/ci-osx-deps.sh b/.ci/ci-osx-deps.sh index 4be656a8fa..5f2e23f1b1 100755 --- a/.ci/ci-osx-deps.sh +++ b/.ci/ci-osx-deps.sh @@ -1,4 +1,5 @@ #!/bin/sh brew update +brew unlink python brew install gettext check bullet dbus fontconfig freetype fribidi gst-plugins-good gstreamer luajit openssl webp libsndfile glib libspectre libraw librsvg poppler lz4 --
