From 8ef7f83b75b6d8605dc06c40404782ffdb98576a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Colomb?= Date: Fri, 8 Aug 2014 15:39:32 +0200 Subject: [PATCH] Fix missing linker flags for libintl. Autoconf provides the correct -l flags for libintl and libiconv in @LIBINTL@, so include that when constructing _LDADD variable. --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 50ebbd9..4629a14 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -77,5 +77,5 @@ if USE_GNULIB LIBS_GNULIB = $(top_builddir)/gnulib/libgnu.a endif -elf_mangle_LDADD = $(LIBS_CINTELHEX) $(LIBS_GNULIB) +elf_mangle_LDADD = $(LIBS_CINTELHEX) $(LIBS_GNULIB) @LIBINTL@ elf_mangle_LDADD += libfallback.a