Fix separate build directory instructions

This commit is contained in:
Ryan Schmidt 2021-04-17 00:22:59 -05:00 committed by GitHub
parent 6dda1160ab
commit 7240f29e22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -125,11 +125,12 @@ fi
##################### Sanity checks
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 " cd .."
echo " mkdir Retro68-build"
echo " ../`basename $SRC`/build-toolchain.sh"
echo " cd Retro68-build"
echo " ../`basename $SRC`/`basename $0`"
exit 1
fi