]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
Fix build error when libintl is installed.
authorBruno Haible <bruno@clisp.org>
Sun, 9 May 2021 02:19:48 +0000 (04:19 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 9 May 2021 02:19:48 +0000 (04:19 +0200)
* modules/posix_spawn_file_actions_addchdir-tests (Makefile.am): Link
test-posix_spawn-chdir with libintl.
* modules/posix_spawn_file_actions_addfchdir-tests (Makefile.am): Link
test-posix_spawn-fchdir with libintl.

ChangeLog
modules/posix_spawn_file_actions_addchdir-tests
modules/posix_spawn_file_actions_addfchdir-tests

index 0ac69a08c88b429efa9576b6f188c459ea14cc65..e0ce4406fdcba86e0b8bed4c02bbdad870a48411 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2021-05-08  Bruno Haible  <bruno@clisp.org>
+
+       Fix build error when libintl is installed.
+       * modules/posix_spawn_file_actions_addchdir-tests (Makefile.am): Link
+       test-posix_spawn-chdir with libintl.
+       * modules/posix_spawn_file_actions_addfchdir-tests (Makefile.am): Link
+       test-posix_spawn-fchdir with libintl.
+
 2021-05-07  Bruno Haible  <bruno@clisp.org>
 
        Fix build when an older libunistring is installed (regr. 2020-02-23).
index e554138815b8d4c3ab951d590a1464f8438966dc..d44b3f1e8265c8ea799ec4f5d6bb32c0c46fbdff 100644 (file)
@@ -19,3 +19,4 @@ TESTS += \
 check_PROGRAMS += \
   test-posix_spawn_file_actions_addchdir \
   test-posix_spawn-chdir
+test_posix_spawn_chdir_LDADD = $(LDADD) @LIBINTL@
index 2f09934802a21d48091a363643403ee3f7a6195a..789a85d2e842f19cf2264bda6f31ffc6519f47af 100644 (file)
@@ -27,4 +27,5 @@ check_PROGRAMS += test-posix_spawn_file_actions_addfchdir
 if POSIX_SPAWN_PORTED
 TESTS += test-posix_spawn-fchdir
 check_PROGRAMS += test-posix_spawn-fchdir
+test_posix_spawn_fchdir_LDADD = $(LDADD) @LIBINTL@
 endif