]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
build: Avoid endless "config.status --recheck" loop (regression from yesterday).
authorBruno Haible <bruno@clisp.org>
Mon, 20 May 2019 00:28:24 +0000 (02:28 +0200)
committerBruno Haible <bruno@clisp.org>
Mon, 13 Apr 2020 10:50:42 +0000 (12:50 +0200)
* gettext-tools/configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR.

gettext-tools/configure.ac

index 52868da46160e7594953d518557252939102e43c..d58b86ed25934d2917ff5d180cade05db2be54f8 100644 (file)
@@ -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],