Browse Source

Fix setting of BOOST_BUILD_PATH.

[SVN r22634]
Rene Rivera 22 years ago
parent
commit
ea8aa35fa9
1 changed files with 5 additions and 1 deletions
  1. 5 1
      tools/regression/run_tests.sh

+ 5 - 1
tools/regression/run_tests.sh

@@ -85,7 +85,11 @@ boost_build_path="$HOME/.boost-build"
 # Some setup.
 #
 boost_dir=`basename "$boost_root"`
-export BOOST_BUILD_PATH="$boost_build_path" "$BOOST_BUILD_PATH"
+if test -n "${BOOST_BUILD_PATH}" ; then
+    export BOOST_BUILD_PATH="$boost_build_path:$BOOST_BUILD_PATH"
+else
+    export BOOST_BUILD_PATH="$boost_build_path"
+fi
 
 #
 # STEP 0:

粤ICP备19079148号