From: Bruno Haible Date: Tue, 2 Sep 2025 13:48:04 +0000 (+0200) Subject: getlogin tests: Fix link error on musl libc. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eae5c3f1a30f20d8ecd124680d0026f13c82d0c0;p=thirdparty%2Fgnulib.git getlogin tests: Fix link error on musl libc. * modules/getlogin-tests (Makefile.am): Link test-getlogin with $(LIBINTL). --- diff --git a/ChangeLog b/ChangeLog index 1750ef936f..c42f89a07e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-09-02 Bruno Haible + + getlogin tests: Fix link error on musl libc. + * modules/getlogin-tests (Makefile.am): Link test-getlogin with + $(LIBINTL). + 2025-09-02 Bruno Haible Clarify link dependency towards libintl on FreeBSD, Solaris, etc. diff --git a/modules/getlogin-tests b/modules/getlogin-tests index 8637b2ea7e..dd214a9e54 100644 --- a/modules/getlogin-tests +++ b/modules/getlogin-tests @@ -12,4 +12,4 @@ configure.ac: Makefile.am: TESTS += test-getlogin check_PROGRAMS += test-getlogin -test_getlogin_LDADD = $(LDADD) $(GETLOGIN_LIB) +test_getlogin_LDADD = $(LDADD) $(GETLOGIN_LIB) $(LIBINTL)