Don't use cached Boost

This commit is contained in:
Vinnie Falco
2017-06-20 15:18:29 -07:00
parent 9ff967ee29
commit 3cb1451a43
2 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,7 @@
Version 63: Version 63:
* Use std::to_string instead of lexical_cast * Use std::to_string instead of lexical_cast
* Don't use cached Boost
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------

View File

@ -7,8 +7,8 @@
# When testing you can force a boost build by clearing travis caches: # When testing you can force a boost build by clearing travis caches:
# https://travis-ci.org/ripple/rippled/caches # https://travis-ci.org/ripple/rippled/caches
set -eu set -eu
if [ ! -d "$BOOST_ROOT/lib" ] #if [ ! -d "$BOOST_ROOT" ]
then #then
wget $BOOST_URL -O /tmp/boost.tar.gz wget $BOOST_URL -O /tmp/boost.tar.gz
cd `dirname $BOOST_ROOT` cd `dirname $BOOST_ROOT`
rm -fr ${BOOST_ROOT} rm -fr ${BOOST_ROOT}
@ -21,7 +21,7 @@ then
./bootstrap.sh --prefix=$BOOST_ROOT && \ ./bootstrap.sh --prefix=$BOOST_ROOT && \
./b2 -d1 $params && \ ./b2 -d1 $params && \
./b2 -d0 $params install ./b2 -d0 $params install
else #else
echo "Using cached boost at $BOOST_ROOT" # echo "Using cached boost at $BOOST_ROOT"
fi #fi