From: Bruno Haible Date: Mon, 24 Feb 2025 07:07:40 +0000 (+0100) Subject: strerror_l tests: Fix link error. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=aca44006e3df3563dd2efb504305aa513e3c2437;p=gnulib.git strerror_l tests: Fix link error. * modules/strerror_l-tests (Makefile.am): Link the test program with LIBINTL. --- diff --git a/ChangeLog b/ChangeLog index e2432dfc04..4453b26db4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-02-24 Bruno Haible + + strerror_l tests: Fix link error. + * modules/strerror_l-tests (Makefile.am): Link the test program with + LIBINTL. + 2025-02-22 Bruno Haible localename-unsafe-limited: Use getlocalename_l-unsafe-limited. diff --git a/modules/strerror_l-tests b/modules/strerror_l-tests index 356788852e..98138e90ff 100644 --- a/modules/strerror_l-tests +++ b/modules/strerror_l-tests @@ -13,4 +13,4 @@ configure.ac: Makefile.am: TESTS += test-strerror_l check_PROGRAMS += test-strerror_l -test_strerror_l_LDADD = $(LDADD) $(GETLOCALENAME_L_LIB) +test_strerror_l_LDADD = $(LDADD) @LIBINTL@ $(GETLOCALENAME_L_LIB)