diff options
author | Jim Meyering <meyering@redhat.com> | 2007-10-29 12:24:39 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-10-29 12:24:39 +0100 |
commit | b00f87cfa3cb166118f04e94b3a79aaa3b6c4fc0 (patch) | |
tree | abff6989f40ef5db4a5320cf57c8c6d1a0787dde | |
parent | b8e8d028613e9394dbce80d32c1c1bbdeb330776 (diff) | |
download | coreutils-b00f87cfa3cb166118f04e94b3a79aaa3b6c4fc0.tar.xz |
Change a "make dist" diagnostic.
* GNUmakefile: Don't imply that $(_curr-ver) is the new version string.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | GNUmakefile | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-10-29 Jim Meyering <meyering@redhat.com> + + Change a "make dist" diagnostic. + * GNUmakefile: Don't imply that $(_curr-ver) is the new version string. + 2007-10-29 Bob Proulx <bob@proulx.com> Improve color terminal escape usage. diff --git a/GNUmakefile b/GNUmakefile index 3dc6f1541..436ecc07d 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: $(_curr-ver)) + $(info INFO: running autoreconf for new version string; old: $(_curr-ver)) dummy := $(shell rm -rf autom4te.cache; autoreconf) endif endif |