diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2012-01-16 23:36:42 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2012-01-16 23:36:42 +0100 |
commit | b86899a341a756088e065edbf9c63c6187ff3fb6 (patch) | |
tree | ea1711c1eed7dd7149565ffbbb8a0a51b829b39c /scripts/addToolVersion.sh | |
parent | b03575409e7dd7911cdd4bebb8637826e34ddc12 (diff) | |
download | crosstool-ng-b86899a341a756088e065edbf9c63c6187ff3fb6.tar.gz crosstool-ng-b86899a341a756088e065edbf9c63c6187ff3fb6.tar.bz2 crosstool-ng-b86899a341a756088e065edbf9c63c6187ff3fb6.zip |
scripts: fix tools override
The tools found by the new autostuff configure can contain arguments,
for example: grep -E
This needs separating the paths set for the Makfile from the paths
set for the scripts.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/addToolVersion.sh')
-rwxr-xr-x | scripts/addToolVersion.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/addToolVersion.sh b/scripts/addToolVersion.sh index c394d245..b82d4857 100755 --- a/scripts/addToolVersion.sh +++ b/scripts/addToolVersion.sh @@ -7,10 +7,10 @@ myname="$0" # Parse the tools' paths configuration # It is expected that this script is only to be run from the # source directory of crosstool-NG, so it is trivial to find -# paths.mk (we can't use ". paths.mk", as POSIX states that +# paths.sh (we can't use ". paths.sh", as POSIX states that # $PATH should be searched for, and $PATH most probably doe # not include "."), hence the "./". -. "./paths.mk" +. "./paths.sh" doHelp() { cat <<-EOF |