aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/aclocal.m42
-rwxr-xr-xgcc/configure2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 039584e..bffccfd 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,4 +1,9 @@
2000-10-08 Philipp Thomas <pthomas@suse.de>
+ * aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator
+ for test.
+ * configure: Rebuilt.
+
+2000-10-08 Philipp Thomas <pthomas@suse.de>
* aclocal.m4 (AM_WITH_NLS): When not using included gettext,
disable catalog building if no suitable program was found.
Move warning message from here
diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4
index c6c4891..c3e1d57 100644
--- a/gcc/aclocal.m4
+++ b/gcc/aclocal.m4
@@ -565,7 +565,7 @@ strdup __argz_count __argz_stringify __argz_next])
AM_LC_MESSAGES
AM_WITH_NLS
- if test "x$create_catalogs" == "xno"; then
+ if test "x$create_catalogs" = "xno"; then
AC_MSG_WARN([No program for building catalogs found -> building disabled])
fi
diff --git a/gcc/configure b/gcc/configure
index 5bd70e6..8813b0f 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -8623,7 +8623,7 @@ fi
- if test "x$create_catalogs" == "xno"; then
+ if test "x$create_catalogs" = "xno"; then
echo "configure: warning: No program for building catalogs found -> building disabled" 1>&2
fi