From 82497b134a1c5c1d5eac8ee7043ca117190d26ba Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sun, 12 May 2019 23:26:04 +0200 Subject: [PATCH] build: Fix "make install" failure with --disable-shared on glibc systems. Reported by Gabor Z. Papp . This is a regression from 2018-11-25. * gettext-tools/configure.ac (PRELOADABLE_LIBINTL): Set to false if --disable-shared was specified. --- gettext-tools/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index 6d8d75265..7d6fbad7f 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -126,7 +126,7 @@ AM_CONDITIONAL([USE_INCLUDED_LIBINTL], [test $USE_INCLUDED_LIBINTL = yes]) AM_CONDITIONAL([BUILD_INCLUDED_LIBINTL], [test $BUILD_INCLUDED_LIBINTL = yes]) AM_CONDITIONAL([PACKAGE_IS_GETTEXT_TOOLS], [true]) AM_CONDITIONAL([PRELOADABLE_LIBINTL], - [test $USE_INCLUDED_LIBINTL = no && test $GLIBC2 = yes]) + [test $USE_INCLUDED_LIBINTL = no && test $GLIBC2 = yes && test "$enable_shared" = yes]) dnl This line internationalizes the bison generated parsers. BISON_I18N -- 2.47.2