1From 319cc3859044214961164ed1f219f2f21ca965af Mon Sep 17 00:00:00 2001 2From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 3Date: Wed, 30 Aug 2017 23:04:37 +0200 4Subject: [PATCH] autoconf/makeinfo.in: link with INTLLIBS if needed 5 6gettext may be provided by external libraries, as specified in 7INTLLIBS, so we must include @INTLLIBS@ in the LIBS variable. 8 9Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 10--- 11 autoconf/makeinfo.in | 2 +- 12 1 file changed, 1 insertion(+), 1 deletion(-) 13 14diff --git a/autoconf/makeinfo.in b/autoconf/makeinfo.in 15index ee3054a..6d58d77 100644 16--- a/autoconf/makeinfo.in 17+++ b/autoconf/makeinfo.in 18@@ -13,5 +13,5 @@ DEFINES = -DETCDIR=\"${SYSCONFDIR}/\" -DVER=\"${VER}\" @DEFS@ \ 19 $(PROFILE) -D__USE_FIXED_PROTOTYPES__ -D_GNU_SOURCE \ 20 -DLOCALEDIR=\"@datadir@/locale\" 21 CFLAGS = $(DEFINES) @gcc_cflags@ @CFLAGS@ 22-LIBS = @LIBS@ $(EFENCE) 23+LIBS = @LIBS@ @INTLLIBS@ $(EFENCE) 24 INSTALL_PROGRAM = ${INSTALL} 25-- 262.13.5 27 28