From: Bruno Haible Date: Fri, 17 May 2024 21:33:17 +0000 (+0200) Subject: getusershell tests: Fix link error on MSVC. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=a103189ca47d9f7ba2b93437de4874dd5556a018;p=gnulib.git getusershell tests: Fix link error on MSVC. * modules/getusershell-tests (Makefile.am): Link test-getusershell with $(LIBINTL). --- diff --git a/ChangeLog b/ChangeLog index add0f34488..a6dfe2c370 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-05-17 Bruno Haible + + getusershell tests: Fix link error on MSVC. + * modules/getusershell-tests (Makefile.am): Link test-getusershell with + $(LIBINTL). + 2024-05-17 Bruno Haible tests: Mark tests that fail on NetBSD as expected failures. diff --git a/modules/getusershell-tests b/modules/getusershell-tests index 2491caaab5..23c4501c1c 100644 --- a/modules/getusershell-tests +++ b/modules/getusershell-tests @@ -11,3 +11,4 @@ configure.ac: Makefile.am: TESTS += test-getusershell check_PROGRAMS += test-getusershell +test_getusershell_LDADD = $(LDADD) $(LIBINTL)