diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-10-04 20:46:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-10-04 20:46:20 +0000 |
commit | 27b2da94a51760da22a24a7ce4ca9822af4a8d71 (patch) | |
tree | 7a8bc0c121c2c709950c51c0f7ab7d79d6043e24 /configure.in | |
parent | 2a01c351e30b778e7011a7de741f81c708b71688 (diff) | |
download | gdb-27b2da94a51760da22a24a7ce4ca9822af4a8d71.zip gdb-27b2da94a51760da22a24a7ce4ca9822af4a8d71.tar.gz gdb-27b2da94a51760da22a24a7ce4ca9822af4a8d71.tar.bz2 |
quote string for test
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 7fa4d7c..ef5be1e 100644 --- a/configure.in +++ b/configure.in @@ -133,7 +133,7 @@ fi # See if we can extract a definition of CC from the fragment. if [ -z "${CC}" ]; then - if [ -n "${host_makefile_frag}" -a -f ${host_makefile_frag} ]; then + if [ -n "${host_makefile_frag}" -a -f "${host_makefile_frag}" ]; then CC=`sed -n -e 's/CC[ ]*=[ ]*\(.*\)$/\1/p' < ${host_makefile_frag}` fi fi |