From: Bruno Haible Date: Tue, 3 Oct 2023 08:24:46 +0000 (+0200) Subject: mcel tests: Fix link error. X-Git-Tag: v1.0~751 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=752d686f752cd158b1dcbfb9496c5c21e0fd0d6a;p=gnulib.git mcel tests: Fix link error. * modules/mcel-tests (Makefile.am): Link test-mcel with $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV). --- diff --git a/ChangeLog b/ChangeLog index 38e339b6c3..4e172526b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2023-10-03 Bruno Haible + + mcel tests: Fix link error. + * modules/mcel-tests (Makefile.am): Link test-mcel with $(LIBUNISTRING) + $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV). + 2023-10-03 Bruno Haible mcel: Fix compilation error in tests. diff --git a/modules/mcel-tests b/modules/mcel-tests index 4b9ba0eeaf..d157608ce3 100644 --- a/modules/mcel-tests +++ b/modules/mcel-tests @@ -10,3 +10,4 @@ configure.ac: Makefile.am: TESTS += test-mcel check_PROGRAMS += test-mcel +test_mcel_LDADD = $(LDADD) $(LIBUNISTRING) $(SETLOCALE_LIB) $(MBRTOWC_LIB) $(LIBC32CONV)