From: DJ Delorie Date: Mon, 7 Aug 2000 15:02:09 +0000 (+0000) Subject: * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean X-Git-Tag: newlib-1_9_0~1236 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=279ddab43fb1e29a4ffb63e9e7a34f89b2ac2a31;p=external%2Fbinutils.git * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean "if we're also building gcc, and it's a gcc that will run on the build machine, we want to use its includes instead of the system's default includes". --- diff --git a/ChangeLog b/ChangeLog index 81415dc..29b31e3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2000-08-07 DJ Delorie + + * configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean + "if we're also building gcc, and it's a gcc that will run on the + build machine, we want to use its includes instead of the system's + default includes". + 2000-08-03 Alexandre Oliva * configure.in (libstdcxx_flags): Don't use `"'. diff --git a/configure.in b/configure.in index eed073d..49f8174 100644 --- a/configure.in +++ b/configure.in @@ -1240,7 +1240,7 @@ case " $skipdirs " in # If we're using a pre-built compiler (which is the case for # Canadian crosses or when gcc isn't being built), don't discard # standard headers. - if test "${build}" = "${host}" && test ! -d ${topsrcdir}/gcc; then + if test "${build}" = "${host}" && test -d ${topsrcdir}/gcc; then FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc' fi