diff options
author | Marco Sirabella <marco@sirabella.org> | 2020-07-10 19:30:16 -0400 |
---|---|---|
committer | Marco Sirabella <marco@sirabella.org> | 2020-07-10 19:30:16 -0400 |
commit | 982dee5978853ec6412c8a25a38c9f0e9bc05f8e (patch) | |
tree | fb7f40efc72a3007196f70b2577851c01210b8f5 /bootstrap | |
parent | 5659366bf62b5555bf914b5f55e8a01c92d6c6f1 (diff) | |
download | crosstool-ng-982dee5978853ec6412c8a25a38c9f0e9bc05f8e.tar.gz crosstool-ng-982dee5978853ec6412c8a25a38c9f0e9bc05f8e.tar.bz2 crosstool-ng-982dee5978853ec6412c8a25a38c9f0e9bc05f8e.zip |
Unset CDPATH for duration of bootstrap script
CDPATH causes the `cd` command to output the directory it's going into
sometimes.
This actually fixes #849, I got bit by this
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,9 @@ if [ "${BASH_VERSINFO[0]}" -lt 4 ]; then exit 1 fi +# see #849 +unset CDPATH + ######################################## # Common meta-language implementation. Syntax: # |