From: Eric Blake Date: Mon, 4 Aug 2008 18:45:23 +0000 (-0600) Subject: gnumakefile: use space, not TAB, outside of targets X-Git-Tag: v0.1~7166 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=5632bd4cfe3177eea1ab7e5d0128f55bebb94717;p=gnulib.git gnumakefile: use space, not TAB, outside of targets * top/GNUmakefile (_dummy): Fix whitespace error in prior edit. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 2a27be2a3..96e0279a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-08-04 Eric Blake + + gnumakefile: use space, not TAB, outside of targets + * top/GNUmakefile (_dummy): Fix whitespace error in prior edit. + 2008-08-02 Jim Meyering getdate.y: avoid locale-dependent date parsing failure diff --git a/top/GNUmakefile b/top/GNUmakefile index 8b64c49dd..7635e8dc5 100644 --- a/top/GNUmakefile +++ b/top/GNUmakefile @@ -63,20 +63,20 @@ ifeq ($(_have-git-version-gen)0,yes$(MAKELEVEL)) ifeq ($(_curr-ver),UNKNOWN) $(info WARNING: unable to verify if $(VERSION) is correct version) else - ifneq (,$(_is-install-target)) - # GNU Coding Standards state that 'make install' should not cause - # recompilation after 'make all'. But as long as changing the version - # string alters config.h, the cost of having 'make all' always have an - # up-to-date version is prohibitive. So, as a compromise, we merely - # warn when installing a version string that is out of date; the user - # should run 'autoreconf' (or something like 'make distcheck') to - # fix the version, 'make all' to propagate it, then 'make install'. - $(info WARNING: version string $(VERSION) is out of date; run autoreconf -f to fix it) - else - $(info INFO: running autoreconf for new version string: $(_curr-ver)) - _dummy := $(shell cd $(srcdir) && rm -rf autom4te.cache .version \ - && $(_autoreconf)) - endif + ifneq (,$(_is-install-target)) + # GNU Coding Standards state that 'make install' should not cause + # recompilation after 'make all'. But as long as changing the version + # string alters config.h, the cost of having 'make all' always have an + # up-to-date version is prohibitive. So, as a compromise, we merely + # warn when installing a version string that is out of date; the user + # should run 'autoreconf' (or something like 'make distcheck') to + # fix the version, 'make all' to propagate it, then 'make install'. + $(info WARNING: version string $(VERSION) is out of date; run autoreconf -f to fix it) + else + $(info INFO: running autoreconf for new version string: $(_curr-ver)) + _dummy := $(shell cd $(srcdir) && rm -rf autom4te.cache .version \ + && $(_autoreconf)) + endif endif endif endif