Merge #911 from banches/eglibc:
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Aug 09 17:40:44 2008 +0000 (2008-08-09)
changeset 7737f4279913498
parent 772 89a720e62cf7
child 774 77d925a3765a
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(-)
scripts/functions
     1.1 --- a/scripts/functions	Fri Aug 08 14:02:48 2008 +0000
     1.2 +++ b/scripts/functions	Sat Aug 09 17:40:44 2008 +0000
     1.3 @@ -171,7 +171,7 @@
     1.4  # Test the presence of a tool, or abort if not found
     1.5  # Usage: CT_HasOrAbort <tool>
     1.6  CT_HasOrAbort() {
     1.7 -    CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z ""$(CT_Which "${1}")
     1.8 +    CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z "$(CT_Which "${1}")"
     1.9      return 0
    1.10  }
    1.11