Travis: Build 3rd-party dependencies with system's default compiler.

Using GCC 4.9 for building the dependencies caused some linker error on
OS X.
This commit is contained in:
Florian Walch 2016-07-17 16:29:59 +02:00
parent 3d1084f264
commit 3455e66cfc

View File

@ -31,7 +31,7 @@ build_deps() {
# update CMake configuration and update to newer deps versions.
cd "${DEPS_BUILD_DIR}"
echo "Configuring with '${DEPS_CMAKE_FLAGS}'."
cmake ${DEPS_CMAKE_FLAGS} "${TRAVIS_BUILD_DIR}/third-party/"
CC= cmake ${DEPS_CMAKE_FLAGS} "${TRAVIS_BUILD_DIR}/third-party/"
if ! ${MAKE_CMD}; then
exit 1