tests: fix LDADD

Problem reported by Christian Weisgerber <naddy@mips.inka.de> in:
https://lists.gnu.org/r/bug-tar/2023-07/msg00015.html
* tests/Makefile.am (LDADD): Add $(LIBINTL), $(LIBICONV).
This commit is contained in:
Paul Eggert
2023-07-19 15:48:25 -07:00
parent 18f90676e4
commit 71530f72d2

View File

@@ -337,4 +337,5 @@ AM_CPPFLAGS = \
LDADD = ../gnu/libgnu.a\
$(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_EACCESS)\
$(LIB_GETRANDOM) $(LIB_HARD_LOCALE) $(FILE_HAS_ACL_LIB) $(LIB_MBRTOWC)\
$(LIB_SELINUX) $(LIB_SETLOCALE_NULL)
$(LIB_SELINUX) $(LIB_SETLOCALE_NULL) \
$(LIBINTL) $(LIBICONV)