From: Jim Meyering Date: Sun, 11 Nov 2007 20:46:53 +0000 (+0100) Subject: Add autoreconf's -v option, to give some feedback. X-Git-Tag: v2.62~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dcae1fc7859cdc1bb3235f17f70f398a81033ccf;p=thirdparty%2Fautoconf.git Add autoreconf's -v option, to give some feedback. Don't imply that $(_curr-ver) is the new version string. --- diff --git a/GNUmakefile b/GNUmakefile index 8929a243..645d63c1 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -53,8 +53,8 @@ ifeq (0,$(MAKELEVEL)) ifneq (,$(_is-dist-target)) _curr-ver := $(shell build-aux/git-version-gen $(srcdir) .version) ifneq ($(_curr-ver),$(VERSION)) - $(info INFO: running autoreconf for new version string: $(_curr-ver)) - dummy := $(shell rm -rf autom4te.cache; autoreconf -i && $(MAKE) clean && rm -f INSTALL) + $(info INFO: running autoreconf for new version string; old: $(_curr-ver)) + dummy := $(shell rm -rf autom4te.cache; autoreconf -i -v && $(MAKE) clean && rm -f INSTALL) endif endif endif