aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator for test.
authorPhilipp Thomas <pthomas@suse.de>
Mon, 9 Oct 2000 08:36:36 +0000 (08:36 +0000)
committerPhilipp Thomas <pthomas@gcc.gnu.org>
Mon, 9 Oct 2000 08:36:36 +0000 (08:36 +0000)
2000-10-08  Philipp Thomas  <pthomas@suse.de>
* aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator
for test.
* configure: Rebuilt.

From-SVN: r36801

gcc/ChangeLog
gcc/aclocal.m4
gcc/configure

index 039584e78c1078c26c7de9e60084dc45469a472e..bffccfd3460f654d046649707819722479f95463 100644 (file)
@@ -1,3 +1,8 @@
+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.
index c6c48916065d8c81e25348f20d1e2be2c6b5a7e1..c3e1d576be84c67eaca52af46b965d9a7f1cc4e6 100644 (file)
@@ -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
 
index 5bd70e6645c65bb3791b8f27720f71b16cbb4013..8813b0fc05d658829c8eb19caf4c9d7cdfde20d6 100755 (executable)
@@ -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