diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-09 17:40:44 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-09 17:40:44 +0000 |
commit | 929970279cb38570d78878d21c82c99dc3d6b9a6 (patch) | |
tree | 2f2fd8f1e3465445ccddbe428a99d701577fb56e /scripts/functions | |
parent | 933e0d68debdd1bd1e00b00572c55c39fa717884 (diff) | |
download | crosstool-ng-929970279cb38570d78878d21c82c99dc3d6b9a6.tar.gz crosstool-ng-929970279cb38570d78878d21c82c99dc3d6b9a6.tar.bz2 crosstool-ng-929970279cb38570d78878d21c82c99dc3d6b9a6.zip |
Merge #911 from banches/eglibc:
Fix testing for tool's presence.
/trunk/scripts/functions | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index da039ab2..a33cfd41 100644 --- a/scripts/functions +++ b/scripts/functions @@ -171,7 +171,7 @@ CT_TestOrAbort() { # Test the presence of a tool, or abort if not found # Usage: CT_HasOrAbort <tool> CT_HasOrAbort() { - CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z ""$(CT_Which "${1}") + CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z "$(CT_Which "${1}")" return 0 } |