1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-25 00:53:43 +00:00

Need travis to build boost-regex too...

This commit is contained in:
King_DuckZ 2016-07-15 17:24:12 +01:00
parent b84c31fb15
commit ac79665c9e

View file

@ -69,7 +69,7 @@ install:
if [[ "${BOOST_URL}" != "" ]] && [ ! -d opt/include/boost ]; then
echo "Downloading boost ${BOOST_VERSION}...";
mkdir boost && travis_retry wget --quiet -O - ${BOOST_URL} | tar --strip-components=1 -xz -C boost;
(cd boost && ./bootstrap.sh && ./b2 install --ignore-site-config --with-filesystem --with-program_options --with-system --prefix=${DEPS_DIR}/opt) > /dev/null
(cd boost && ./bootstrap.sh && ./b2 install --ignore-site-config --with-filesystem --with-program_options --with-system --with-regex --prefix=${DEPS_DIR}/opt) > /dev/null
fi
# Install yaml-cpp