From: Bruno Haible Date: Sun, 12 May 2019 21:26:04 +0000 (+0200) Subject: build: Fix "make install" failure with --disable-shared on glibc systems. X-Git-Tag: v0.21~230 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41eb83cf4aa73f0ac4e70173562f11a17a1d0298;p=thirdparty%2Fgettext.git 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. --- diff --git a/gettext-tools/configure.ac b/gettext-tools/configure.ac index cf1dd734d..fdf75c1ad 100644 --- a/gettext-tools/configure.ac +++ b/gettext-tools/configure.ac @@ -119,7 +119,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