From: Bruno Haible Date: Sun, 4 Sep 2022 22:02:44 +0000 (+0200) Subject: glob tests: Fix link error on mingw. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=dc75458862bd490da9d824900efa604ab7876f21;p=gnulib.git glob tests: Fix link error on mingw. * modules/glob-tests (Makefile.am): Link test-glob with $(LIBINTL). --- diff --git a/ChangeLog b/ChangeLog index 5d39fbb0b4..ee53375b54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2022-09-04 Bruno Haible + + glob tests: Fix link error on mingw. + * modules/glob-tests (Makefile.am): Link test-glob with $(LIBINTL). + 2022-09-04 Bruno Haible timespec_get: Fix compilation error with MSVC 14. diff --git a/modules/glob-tests b/modules/glob-tests index afce2dbca0..5054196a23 100644 --- a/modules/glob-tests +++ b/modules/glob-tests @@ -12,7 +12,7 @@ configure.ac: Makefile.am: TESTS += test-glob check_PROGRAMS += test-glob -test_glob_LDADD = $(LDADD) $(LIB_MBRTOWC) +test_glob_LDADD = $(LDADD) $(LIBINTL) $(LIB_MBRTOWC) MOSTLYCLEANFILES += \ test-glob.tglobfile \ test-glob.tgloblink1 \