diff options
author | Jim Meyering <meyering@redhat.com> | 2007-11-22 08:44:38 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-11-22 08:44:38 +0100 |
commit | 7794100ef88f8fbf40309604c7f22a58dbd2a37d (patch) | |
tree | 07538ffa18a327dd711a83b6b7fc7bc2e02767b9 | |
parent | fe9033c3091f168e2b0a8625ee34d93073174c35 (diff) | |
download | coreutils-7794100ef88f8fbf40309604c7f22a58dbd2a37d.tar.xz |
* GNUmakefile: Correct the "rerunning..." diagnostic.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | GNUmakefile | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2007-11-22 Jim Meyering <meyering@redhat.com> + * GNUmakefile: Correct the "rerunning..." diagnostic. + Make it easier to diagnose PATH-induced "make distcheck" failures. * Makefile.maint (write_loser): Define. (my-distcheck): Use an always-failing wrapper script, that gives diff --git a/GNUmakefile b/GNUmakefile index 436ecc07d..3dc6f1541 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -47,7 +47,7 @@ ifeq (0,$(MAKELEVEL)) ifneq (,$(_is-dist-target)) _curr-ver := $(shell build-aux/git-version-gen .version) ifneq ($(_curr-ver),$(VERSION)) - $(info INFO: running autoreconf for new version string; old: $(_curr-ver)) + $(info INFO: running autoreconf for new version string: $(_curr-ver)) dummy := $(shell rm -rf autom4te.cache; autoreconf) endif endif |