Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-11-22 22:54:22 +0300
committerJeff Johnston <jjohnstn@redhat.com>2002-11-22 22:54:22 +0300
commit2955fd7669437cb13d2b228b5f1b6c1dda58fa34 (patch)
tree359bfeb2fdabdf9d531660f2bac58b964898f964 /newlib/configure.in
parent40ce7368d9b8915323c59691110fcfe95e88fcc1 (diff)
2002-11-22 Joe Buehler <jbuehler@hekimian.com>
* configure.in: Change check for libc/include in ${CC} to use an intermediate value so as to work with different shells. * configure: Regenerated. * Makefile.in: Ditto.
Diffstat (limited to 'newlib/configure.in')
-rw-r--r--newlib/configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/configure.in b/newlib/configure.in
index 99a4b40b3..255802798 100644
--- a/newlib/configure.in
+++ b/newlib/configure.in
@@ -55,7 +55,8 @@ AC_SUBST(EXTRA_DIRS)
# These get added in the top-level configure.in, except in the case where
# newlib is being built natively.
-if test -z `echo ${CC} | grep \/libc\/include`; then
+LIBC_INCLUDE_GREP=`echo ${CC} | grep \/libc\/include`
+if test -z "${LIBC_INCLUDE_GREP}"; then
CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
else
CC_FOR_NEWLIB="${CC}"