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
This commit is contained in:
Philipp Thomas 2000-10-09 08:36:36 +00:00 committed by Philipp Thomas
parent 9fdf713feb
commit 4d0230e166
3 changed files with 7 additions and 2 deletions

View 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.

2
gcc/aclocal.m4 vendored
View 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

2
gcc/configure vendored
View File

@ -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