]> Savannah Git Hosting - gnulib.git/commitdiff
tests: Fix link errors (regression 2024-08-12).
authorBruno Haible <bruno@clisp.org>
Wed, 14 Aug 2024 14:14:27 +0000 (16:14 +0200)
committerBruno Haible <bruno@clisp.org>
Wed, 14 Aug 2024 14:14:27 +0000 (16:14 +0200)
* modules/chown-tests (Makefile.am): Link test-chown with LIBINTL.
* modules/lchown-tests (Makefile.am): Link test-lchown with LIBINTL.
* modules/stat-time-tests (Makefile.am): Link test-stat-time with
LIBINTL.

ChangeLog
modules/chown-tests
modules/lchown-tests
modules/stat-time-tests

index 3b755f229c03eeb2c8760593047d65d7f7021ce8..8f147f4b2e8590f91f1eb7b58242a90434352a81 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2024-08-14  Bruno Haible  <bruno@clisp.org>
+
+       tests: Fix link errors (regression 2024-08-12).
+       * modules/chown-tests (Makefile.am): Link test-chown with LIBINTL.
+       * modules/lchown-tests (Makefile.am): Link test-lchown with LIBINTL.
+       * modules/stat-time-tests (Makefile.am): Link test-stat-time with
+       LIBINTL.
+
 2024-08-13  Bruno Haible  <bruno@clisp.org>
 
        mbrtoc16: Fix compilation error on Haiku.
index 520c00dfb381d46b9b75ca404f9254e1007f9ec2..2c3d9686dce4e9b8e14841ad8aa36eb562c3c96b 100644 (file)
@@ -23,4 +23,4 @@ AC_CHECK_FUNCS_ONCE([getgid getegid])
 Makefile.am:
 TESTS += test-chown
 check_PROGRAMS += test-chown
-test_chown_LDADD = $(LDADD) $(NANOSLEEP_LIB)
+test_chown_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
index a66d624b30898b018278c12fca5b784de4e191f7..cc7bffa55fedeaea4dcf4925517f11e6597e33e6 100644 (file)
@@ -23,4 +23,4 @@ AC_CHECK_FUNCS_ONCE([getgid getegid])
 Makefile.am:
 TESTS += test-lchown
 check_PROGRAMS += test-lchown
-test_lchown_LDADD = $(LDADD) $(NANOSLEEP_LIB)
+test_lchown_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@
index 50addb33fcfd8ce38fa48c334717f4f34d3d19e8..9a283783b734a6280adba38b1236f81328417a90 100644 (file)
@@ -16,4 +16,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-stat-time
 check_PROGRAMS += test-stat-time
-test_stat_time_LDADD = $(LDADD) $(NANOSLEEP_LIB)
+test_stat_time_LDADD = $(LDADD) $(NANOSLEEP_LIB) @LIBINTL@