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