From ff571539cb470cae9f1581aec69fc618342a5629 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Sat, 2 Sep 2023 23:27:19 +0100 Subject: [PATCH] Add i18n libs to the correct variable. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bb011a7..ff915fa 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AM_GNU_GETTEXT_VERSION([0.21]) AM_GNU_GETTEXT([external]) if test "$USE_NLS" = "yes"; then CPPFLAGS="$CPPFLAGS -DLOCALEDIR=\\\"\$(localedir)\\\"" - LDFLAGS="$LDFLAGS $LIBINTL" + LIBS="$LIBS $LIBINTL" fi AC_CHECK_FUNCS([getopt_long]) AC_CHECK_HEADERS([getopt.h])