aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index e52dce2..0958064 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2003-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
+
+ * configure.in: Fix typo.
+ * configure: Regenerate.
+
2003-02-14 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (*iorsi2_and_1_lshiftrt_1): New.
diff --git a/gcc/configure b/gcc/configure
index 8c85ee6..93b3b85 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -8498,7 +8498,7 @@ EOF
;;
esac
-if test x$with_sysroot = x && x$host = x$target \
+if test x$with_sysroot = x && test x$host = x$target \
&& test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
cat >> confdefs.h <<EOF
#define PREFIX_INCLUDE_DIR "$prefix/include"
diff --git a/gcc/configure.in b/gcc/configure.in
index f888280..a0dd7e5 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2426,7 +2426,7 @@ case "$target" in
;;
esac
-if test x$with_sysroot = x && x$host = x$target \
+if test x$with_sysroot = x && test x$host = x$target \
&& test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
fi