We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a8b476 commit 710ef66Copy full SHA for 710ef66
1 file changed
bootstrap.sh
@@ -84,7 +84,7 @@ if [ ! -z "${DESIRED_BOOST_DIR}" ]; then
84
else
85
# New way of installing boost:
86
# Check whether we have the required boost packages installed
87
- BOOST_VERSION=$(echo -e '#include <boost/version.hpp>\nBOOST_LIB_VERSION' | gcc -s -x c++ -E - 2>/dev/null| grep "^[^#;]" | tr -d '\"')
+ (BOOST_VERSION=$(echo -e '#include <boost/version.hpp>\nBOOST_LIB_VERSION' | gcc -s -x c++ -E - 2>/dev/null| grep "^[^#;]" | tr -d '\"')) || true
88
89
if [ -z "$BOOST_VERSION" ] ;then
90
if [ -x "$(command -v pacman)" ]; then
0 commit comments