]> Savannah Git Hosting - gnulib.git/commitdiff
getopt-posix-tests: fix Makefile typo
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 19 Dec 2016 16:20:45 +0000 (08:20 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 19 Dec 2016 16:22:39 +0000 (08:22 -0800)
* modules/getopt-posix-tests (test_getopt_posix_LDADD):
Fix typo: the last ‘_’ was missing in the name.
I suspect that the typo explains this build failure:
https://buildfarm.opencsw.org/buildbot/builders/ggrep-solaris10-sparc/builds/39
although I can’t reproduce the problem on Solaris 10 sparc.

ChangeLog
modules/getopt-posix-tests

index 49b2c99eea2432f261b18f26e787682d24310360..d6806ef075f29b8f0735817216bf6564266b4558 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2016-12-19  Paul Eggert  <eggert@cs.ucla.edu>
+
+       getopt-posix-tests: fix Makefile typo
+       * modules/getopt-posix-tests (test_getopt_posix_LDADD):
+       Fix typo: the last ‘_’ was missing in the name.
+       I suspect that the typo explains this build failure:
+       https://buildfarm.opencsw.org/buildbot/builders/ggrep-solaris10-sparc/builds/39
+       although I can’t reproduce the problem on Solaris 10 sparc.
+
 2016-12-18  Paul Eggert  <eggert@cs.ucla.edu>
 
        dfa: improve worst-case 'replace' performance
index 067e38fabb176f9d662d6ad93bfc2ab83f946a81..fe71fcdfa4b4dd0baac8714c5f63714125325ecc 100644 (file)
@@ -17,4 +17,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-getopt-posix
 check_PROGRAMS += test-getopt-posix
-test_getopt_posixLDADD = $(LDADD) $(LIBINTL)
+test_getopt_posix_LDADD = $(LDADD) $(LIBINTL)