diff options
author | Philipp Thomas <pthomas@suse.de> | 2000-10-09 08:36:36 +0000 |
---|---|---|
committer | Philipp Thomas <pthomas@gcc.gnu.org> | 2000-10-09 08:36:36 +0000 |
commit | 4d0230e166ce370a9d556b305cfa7ddcd8b0c6c8 (patch) | |
tree | abb7d0547c0c65c37e5d69a71993d0af1e284001 /gcc/aclocal.m4 | |
parent | 9fdf713feb6fec10116515240ffe48b2f072a963 (diff) | |
download | gcc-4d0230e166ce370a9d556b305cfa7ddcd8b0c6c8.zip gcc-4d0230e166ce370a9d556b305cfa7ddcd8b0c6c8.tar.gz gcc-4d0230e166ce370a9d556b305cfa7ddcd8b0c6c8.tar.bz2 |
aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator for test.
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
Diffstat (limited to 'gcc/aclocal.m4')
-rw-r--r-- | gcc/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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 |