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:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-05-03 20:39:22 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-05-03 20:39:22 +0400
commite911832c96ed72284bc9b6710c6cc1f169460a00 (patch)
treee761904b4a39ac65f849af4429cd44edfac69364 /newlib/configure
parent2cd51a88a5b142de64c0177e8d02ac46ae551b84 (diff)
* configure.in (CC_FOR_NEWLIB): Change -isystem's to -I's.
Diffstat (limited to 'newlib/configure')
-rwxr-xr-xnewlib/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/configure b/newlib/configure
index 1cbcb39ed..408502c14 100755
--- a/newlib/configure
+++ b/newlib/configure
@@ -2389,7 +2389,7 @@ fi
# 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
- CC_FOR_NEWLIB="${CC} -isystem $PWD/targ-include -isystem ${newlib_basedir}/libc/include"
+ CC_FOR_NEWLIB="${CC} -I$PWD/targ-include -I${newlib_basedir}/libc/include"
else
CC_FOR_NEWLIB="${CC}"
fi