From: Bruno Haible Date: Fri, 11 Aug 2023 20:02:02 +0000 (+0200) Subject: readutmp tests: Fix link error. X-Git-Tag: v1.0~933 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=87f7ad5b9707702580f0b74023519936067a609d;p=gnulib.git readutmp tests: Fix link error. * modules/readutmp-tests (Makefile.am): Link test-readutmp with $(LIBINTL). --- diff --git a/ChangeLog b/ChangeLog index 7f308b7473..526e5cb4be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2023-08-11 Bruno Haible + + readutmp tests: Fix link error. + * modules/readutmp-tests (Makefile.am): Link test-readutmp with + $(LIBINTL). + 2023-08-11 Bruno Haible readutmp: Fix the boot time returned on Minix. diff --git a/modules/readutmp-tests b/modules/readutmp-tests index 06f06a7c3c..5543b30fac 100644 --- a/modules/readutmp-tests +++ b/modules/readutmp-tests @@ -11,4 +11,4 @@ configure.ac: Makefile.am: TESTS += test-readutmp check_PROGRAMS += test-readutmp -test_readutmp_LDADD = $(LDADD) @READUTMP_LIB@ +test_readutmp_LDADD = $(LDADD) @READUTMP_LIB@ $(LIBINTL)