diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 039584e78c1..bffccfd3460 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-10-08 Philipp Thomas + * aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator + for test. + * configure: Rebuilt. + 2000-10-08 Philipp Thomas * aclocal.m4 (AM_WITH_NLS): When not using included gettext, disable catalog building if no suitable program was found. diff --git a/gcc/aclocal.m4 b/gcc/aclocal.m4 index c6c48916065..c3e1d576be8 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 5bd70e6645c..8813b0fc05d 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