From 01cb1459a89435a14df4fd526ec02bd2cc81cd38 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 20 May 2019 02:28:24 +0200 Subject: [PATCH] build: Avoid endless "config.status --recheck" loop (regression from yesterday). * gettext-tools/configure.ac: Use AC_MSG_WARN instead of AC_MSG_ERROR. --- gettext-tools/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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], -- 2.47.2