From: Bruno Haible Date: Sat, 8 Apr 2023 00:19:30 +0000 (+0200) Subject: trim tests: Fix link error. X-Git-Tag: v1.0~1491 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=e1d9c884353443e1827c056206e0d09355a32fef;p=gnulib.git trim tests: Fix link error. * modules/trim-tests (Makefile.am): Link test-trim also against libintl. --- diff --git a/ChangeLog b/ChangeLog index 98beb6d5f9..b5f0edc641 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2023-04-07 Bruno Haible + + trim tests: Fix link error. + * modules/trim-tests (Makefile.am): Link test-trim also against libintl. + 2023-04-07 Bruno Haible stdio: Fix the value of _PRINTF_NAN_LEN_MAX on OpenBSD. diff --git a/modules/trim-tests b/modules/trim-tests index 326b800c3f..ece746d2df 100644 --- a/modules/trim-tests +++ b/modules/trim-tests @@ -19,4 +19,4 @@ TESTS_ENVIRONMENT += \ LOCALE_FR_UTF8='@LOCALE_FR_UTF8@' \ LOCALE_ZH_CN='@LOCALE_ZH_CN@' check_PROGRAMS += test-trim -test_trim_LDADD = $(LDADD) $(LIBUNISTRING) $(MBRTOWC_LIB) +test_trim_LDADD = $(LDADD) $(LIBUNISTRING) @LIBINTL@ $(MBRTOWC_LIB)