From 1fe61186a38a0cf368ec9fe07638d56027030432 Mon Sep 17 00:00:00 2001 From: Bill Hamilton Date: Thu, 31 May 2018 01:39:38 +0000 Subject: [PATCH] Centos: moved directory opt/boost_1_67_0 to opt/boost --- eosio_build.sh | 2 +- scripts/eosio_build_centos.sh | 21 +++++++++++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/eosio_build.sh b/eosio_build.sh index 67f7e939f..9d339a052 100755 --- a/eosio_build.sh +++ b/eosio_build.sh @@ -153,7 +153,7 @@ export LLVM_DIR=${HOME}/opt/wasm/lib/cmake/llvm export CMAKE=${HOME}/opt/cmake/bin/cmake export PATH=${HOME}/opt/mongodb/bin:$PATH - export BOOST_ROOT="${HOME}/opt/boost_1_67_0" + export BOOST_ROOT="${HOME}/opt/boost" ;; "elementary OS") FILE="${PWD}/scripts/eosio_build_ubuntu.sh" diff --git a/scripts/eosio_build_centos.sh b/scripts/eosio_build_centos.sh index 5766548a0..9d4a38f6a 100644 --- a/scripts/eosio_build_centos.sh +++ b/scripts/eosio_build_centos.sh @@ -298,6 +298,23 @@ printf "\\tCMAKE found @ %s.\\n" "${CMAKE}" fi + if [ -d "${HOME}/opt/boost_1_67_0" ]; then + if ! mv "${HOME}/opt/boost_1_67_0" "${BOOST_ROOT}" + then + printf "\\n\\tUnable to move directory %s/opt/boost_1_67_0 to %s.\\n" "${HOME}" "${BOOST_ROOT}" + printf "\\n\\tExiting now.\\n" + exit 1 + fi + if [ -d "$BUILD_DIR" ]; then + if ! rm -rf "$BUILD_DIR" + then + printf "\\tUnable to remove directory %s. Please remove this directory and run this script %s again. 0\\n" "$BUILD_DIR" "${BASH_SOURCE[0]}" + printf "\\tExiting now.\\n\\n" + exit 1; + fi + fi + fi + printf "\\n\\tChecking boost library installation.\\n" BVERSION=$( grep "#define BOOST_VERSION" "${BOOST_ROOT}/include/boost/version.hpp" 2>/dev/null \ | tail -1 | tr -s ' ' | cut -d\ -f3) @@ -366,9 +383,9 @@ exit 1; fi fi - printf "\\tBoost 1.67.0 successfully installed @ %s/opt/boost_1_67_0.\\n\\n" "${HOME}" + printf "\\tBoost successfully installed @ %s.\\n" "${BOOST_ROOT}" else - printf "\\tBoost 1.67.0 found at %s/opt/boost_1_67_0.\\n\\n" "${HOME}" + printf "\\tBoost 1.67.0 found at %s.\\n\\n" "${BOOST_ROOT}" fi printf "\\n\\tChecking MongoDB installation.\\n" -- GitLab