diff options
author | Jim Meyering <meyering@redhat.com> | 2007-12-20 14:03:12 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-12-20 14:03:12 +0100 |
commit | 8ddc5056f21039a319a65bece258eccf479e35f8 (patch) | |
tree | 8181eaedc80e72448e7598e6fdac7c37124a3142 | |
parent | 875e96efab820c5c0d240375d85d6c45b36ef3f2 (diff) | |
download | coreutils-8ddc5056f21039a319a65bece258eccf479e35f8.tar.xz |
Avoid spurious "make check" failures due to omitted programs.
* man/Makefile.am (distcheck-hook): Make check rules dependents of
this target, not of check-local, so that people aren't distracted by
failures due to programs omitted via --enable-no-install-program=...
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | man/Makefile.am | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2007-12-20 Jim Meyering <meyering@redhat.com> + + Avoid spurious "make check" failures due to omitted programs. + * man/Makefile.am (distcheck-hook): Make check rules dependents of + this target, not of check-local, so that people aren't distracted by + failures due to programs omitted via --enable-no-install-program=... + 2007-12-19 Paul Eggert <eggert@cs.ucla.edu> * src/uniq.c (usage): Improve wording in --help "Note". diff --git a/man/Makefile.am b/man/Makefile.am index 8d1f7f7c9..b7b960e8f 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -163,7 +163,7 @@ mapped_name = `echo $*|sed 's/^install$$/ginstall/; s/^test$$/[/'` && rm -rf $t ;; \ esac -check-local: check-x-vs-1 check-programs-vs-x +distcheck-hook: check-x-vs-1 check-programs-vs-x # Sort in traditional ASCII order, regardless of the current locale; # otherwise we may get into trouble with distinct strings that the |