]> Savannah Git Hosting - gnulib.git/commitdiff
copy-file tests: Fix link error (regression from 2017-05-01).
authorBruno Haible <bruno@clisp.org>
Thu, 18 May 2017 20:20:58 +0000 (22:20 +0200)
committerBruno Haible <bruno@clisp.org>
Thu, 18 May 2017 20:20:58 +0000 (22:20 +0200)
Reported by Tom G. Christensen <tgc@jupiterrise.com>.

* modules/copy-file-tests (Makefile.am): Link test-copy-file with
$(LIB_CLOCK_GETTIME).

ChangeLog
modules/copy-file-tests

index 01e99d9d692828a4083c477c0a0bd5d29415edce..5eb36babf4e5937e10b11b34f995a276b0f5df07 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-05-18  Bruno Haible  <bruno@clisp.org>
+
+       copy-file tests: Fix link error (regression from 2017-05-01).
+       Reported by Tom G. Christensen <tgc@jupiterrise.com>.
+       * modules/copy-file-tests (Makefile.am): Link test-copy-file with
+       $(LIB_CLOCK_GETTIME).
+
 2017-05-18  Bruno Haible  <bruno@clisp.org>
 
        unicase/special-casing: Fix incompatibility with gperf-3.0.4
index c6eaf70a7239a9e2ce441559081a0cb91547bc36..299d49fc531ce567da08811deb128e23de5d5cc9 100644 (file)
@@ -17,4 +17,4 @@ Makefile.am:
 TESTS += test-copy-file.sh test-copy-file-1.sh test-copy-file-2.sh
 TESTS_ENVIRONMENT += USE_ACL=$(USE_ACL)
 check_PROGRAMS += test-copy-file
-test_copy_file_LDADD = $(LDADD) $(LIB_ACL) @LIBINTL@
+test_copy_file_LDADD = $(LDADD) $(LIB_ACL) $(LIB_CLOCK_GETTIME) @LIBINTL@