From 15c758e9e4c485cfafc954611453a329b9ba69c8 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Mon, 7 Aug 2000 11:00:46 -0400 Subject: [PATCH] configure.in (FLAGS_FOR_TARGET): invert test for xgcc... * 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". From-SVN: r35553 --- ChangeLog | 7 +++++++ configure.in | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 913d90d41a8..5d1c8544ac7 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-04 Joseph S. Myers * MAINTAINERS: Add self to Write After Approval list. diff --git a/configure.in b/configure.in index 726123420d2..69a5f0869ac 100644 --- a/configure.in +++ b/configure.in @@ -1252,7 +1252,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 -- 2.30.2