diff --git a/contrib/bootstrap b/contrib/bootstrap index 7ad8b33c67d6f7de6a88d77e3bb4cfac8c062939..5e3f26693257f3c4b507db648b58c03a56e2dbe7 100755 --- a/contrib/bootstrap +++ b/contrib/bootstrap @@ -52,12 +52,6 @@ AD_CLAUSES= WITH_OPTIMIZATION="1" ENABLE_PDB= -if test ! -f "../../contrib/src/main.mak" -then - echo "$0 must be run from a subdirectory" - exit 1 -fi - while test -n "$1" do case "$1" in @@ -382,10 +376,16 @@ esac # # Results output # -add_make "TOPSRC = .." -add_make "TOPSRC_BUILT = ../.." +BOOTSTRAP_PATH="$( cd "$(dirname "$0")" ; pwd -P )" +CURRENT_PATH="$( pwd -P )" +# location of the contrib/src folder from the root of the contrib build folder +TOPSRC=$(python -c "import os; print(os.path.relpath('$BOOTSTRAP_PATH', '$CURRENT_PATH'))") +# location of the contrib/src folder from a built library folder +TOPSRC_BUILT=$(python -c "import os; print(os.path.relpath('$BOOTSTRAP_PATH', '$CURRENT_PATH/libfoo'))") +add_make "TOPSRC = $TOPSRC" +add_make "TOPSRC_BUILT = $TOPSRC_BUILT" add_make "TOPDST = .." add_make 'include $(TOPSRC)/src/main.mak' echo "Bootstrap completed." make help -mkdir -p ../../contrib/tarballs || exit $? +mkdir -p $BOOTSTRAP_PATH/tarballs || exit $?