diff --git a/CHANGELOG.md b/CHANGELOG.md index 91ea2255..9bf9623e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ Version 63: * Use std::to_string instead of lexical_cast +* Don't use cached Boost -------------------------------------------------------------------------------- diff --git a/scripts/install-boost.sh b/scripts/install-boost.sh index 8365c2d5..fcee32d5 100755 --- a/scripts/install-boost.sh +++ b/scripts/install-boost.sh @@ -7,8 +7,8 @@ # When testing you can force a boost build by clearing travis caches: # https://travis-ci.org/ripple/rippled/caches set -eu -if [ ! -d "$BOOST_ROOT/lib" ] -then +#if [ ! -d "$BOOST_ROOT" ] +#then wget $BOOST_URL -O /tmp/boost.tar.gz cd `dirname $BOOST_ROOT` rm -fr ${BOOST_ROOT} @@ -21,7 +21,7 @@ then ./bootstrap.sh --prefix=$BOOST_ROOT && \ ./b2 -d1 $params && \ ./b2 -d0 $params install -else - echo "Using cached boost at $BOOST_ROOT" -fi +#else +# echo "Using cached boost at $BOOST_ROOT" +#fi