Merge pull request #130 from ryandesign/patch-3

Fix separate build directory instructions
This commit is contained in:
Wolfgang Thaller 2021-04-18 12:25:04 +02:00 committed by GitHub
commit e8fb52d494
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,11 +125,12 @@ fi
##################### Sanity checks ##################### Sanity checks
if [ `pwd -P` == "$SRC" ]; then if [ `pwd -P` == "$SRC" ]; then
echo "Please do not invoke build-toolchain.sh from the source directory." echo "Please do not invoke `basename $0` from the source directory."
echo "Instead, create a separate build directory:" echo "Instead, create a separate build directory:"
echo " cd .." echo " cd .."
echo " mkdir Retro68-build" echo " mkdir Retro68-build"
echo " ../`basename $SRC`/build-toolchain.sh" echo " cd Retro68-build"
echo " ../`basename $SRC`/`basename $0`"
exit 1 exit 1
fi fi