From: Bruno Haible Date: Mon, 20 May 2019 00:28:24 +0000 (+0200) Subject: build: Avoid endless "config.status --recheck" loop (regression from yesterday). X-Git-Tag: v0.20.2~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01cb1459a89435a14df4fd526ec02bd2cc81cd38;p=thirdparty%2Fgettext.git build: Avoid endless "config.status --recheck" loop (regression from yesterday). * gettext-tools/configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR. --- diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index 52868da46..d58b86ed2 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -141,7 +141,7 @@ if test "$gt_use_installed_libtextstyle" != no; then gl_LIBTEXTSTYLE else test -f ../libtextstyle/Makefile || { - AC_MSG_ERROR([When building the gettext-tools package without building the entire gettext package, you need to pass the --with-installed-libtextstyle option to configure.]) + AC_MSG_WARN([When building the gettext-tools package without building the entire gettext package, you need to pass the --with-installed-libtextstyle option to configure.]) } fi AM_CONDITIONAL([USE_INSTALLED_LIBTEXTSTYLE], @@ -155,7 +155,7 @@ AC_ARG_WITH([installed-csharp-dll], [gt_use_installed_csharp_dll=no]) if test "$gt_use_installed_csharp_dll" = no; then test -f ../gettext-runtime/intl-csharp/Makefile || { - AC_MSG_ERROR([When building the gettext-tools package without building the entire gettext package, you need to pass the --with-installed-csharp-dll option to configure.]) + AC_MSG_WARN([When building the gettext-tools package without building the entire gettext package, you need to pass the --with-installed-csharp-dll option to configure.]) } fi AM_CONDITIONAL([USE_INSTALLED_CSHARP_DLL],