summaryrefslogtreecommitdiff
path: root/modules/getumask-tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2020-11-17 02:30:29 +0100
committerBruno Haible <bruno@clisp.org>2020-11-17 02:30:29 +0100
commit72a71de689b06eb0f2ad9c02f7682e26bcb518b9 (patch)
tree326d09b1ecc013b2a288d25729331238093b7fa1 /modules/getumask-tests
parentf1b7489ca2b67e4c68ab2a8e0591ef42562166e7 (diff)
downloadgnulib-72a71de689b06eb0f2ad9c02f7682e26bcb518b9.tar.gz
Fix link errors on platforms with libintl (e.g. Solaris and AIX).
Reported by Tom G. Christensen <tgc@jupiterrise.com> in <https://lists.gnu.org/archive/html/bug-gnulib/2020-11/msg00062.html>. * modules/getumask-tests (Makefile.am): Link test-getumask with $(LIBINTL). * modules/stack-tests (Makefile.am): Link test-stack with $(LIBINTL). * modules/supersede-tests (Makefile.am): Link test-supersede with $(LIBINTL). * modules/unicodeio-tests (Makefile.am): Link test-unicodeio with $(LIBINTL).
Diffstat (limited to 'modules/getumask-tests')
-rw-r--r--modules/getumask-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/getumask-tests b/modules/getumask-tests
index efded3428f..29b91c7027 100644
--- a/modules/getumask-tests
+++ b/modules/getumask-tests
@@ -10,4 +10,4 @@ configure.ac:
Makefile.am:
TESTS += test-getumask
check_PROGRAMS += test-getumask
-test_getumask_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM)
+test_getumask_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM) $(LIBINTL)