Commit 4d0230e1 by Philipp Thomas Committed by Philipp Thomas

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
parent 9fdf713f
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
......
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment