* configure.in (CC_FOR_NEWLIB): Change -isystem's to -I's.
This commit is contained in:
parent
2cd51a88a5
commit
e911832c96
|
@ -1,3 +1,7 @@
|
||||||
|
2002-05-03 Thomas Fitzsimmons <fitzsim@redhat.com>
|
||||||
|
|
||||||
|
* configure.in (CC_FOR_NEWLIB): Change -isystem's to -I's.
|
||||||
|
|
||||||
2002-05-01 Christopher Faylor <cgf@redhat.com>
|
2002-05-01 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* utmp.h: Define more UNIX constants.
|
* utmp.h: Define more UNIX constants.
|
||||||
|
|
|
@ -2389,7 +2389,7 @@ fi
|
||||||
# These get added in the top-level configure.in, except in the case where
|
# These get added in the top-level configure.in, except in the case where
|
||||||
# newlib is being built natively.
|
# newlib is being built natively.
|
||||||
if test -z `echo ${CC} | grep \/libc\/include`; then
|
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
|
else
|
||||||
CC_FOR_NEWLIB="${CC}"
|
CC_FOR_NEWLIB="${CC}"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -40,7 +40,7 @@ AM_CONDITIONAL(HAVE_DOC, test x$have_doc = xyes)
|
||||||
# These get added in the top-level configure.in, except in the case where
|
# These get added in the top-level configure.in, except in the case where
|
||||||
# newlib is being built natively.
|
# newlib is being built natively.
|
||||||
if test -z `echo ${CC} | grep \/libc\/include`; then
|
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
|
else
|
||||||
CC_FOR_NEWLIB="${CC}"
|
CC_FOR_NEWLIB="${CC}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue