2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-09 11:02:28 +00:00

Fix script to work when run from outside dirs.

This commit is contained in:
Rene Rivera
2021-01-16 10:41:04 -06:00
parent 38e16bee51
commit 69b1c679bb

View File

@@ -16,6 +16,18 @@ B2_VERBOSE=${FALSE}
B2_DEBUG=${FALSE}
B2_GUESS_TOOLSET=${FALSE}
# We need to calculate and set SCRIPT_PATH and SCRIPT_DIR to reference this
# script so that we can refer to file relative to it.
SCRIPT_PATH=${BASH_SOURCE[0]}
if test "${SCRIPT_PATH}" == "" ; then
SCRIPT_PATH=$0
fi
SCRIPT_DIR="$( cd "$( dirname "${SCRIPT_PATH}" )" && pwd )"
# This script needs to operate at engine source directory.
SAVED_PWD="${PWD}"
cd "${SCRIPT_DIR}"
test_true ()
{
if test $1 -eq ${TRUE} ; then