changeset 29995:f86d2552b8e0

gnumakefile: use space, not TAB, outside of targets * top/GNUmakefile (_dummy): Fix whitespace error in prior edit. Signed-off-by: Eric Blake <ebb9@byu.net>
author Eric Blake <ebb9@byu.net>
date Mon, 04 Aug 2008 12:45:23 -0600
parents 030a4d03f760
children 7a201a3358f5
files ChangeLog top/GNUmakefile
diffstat 2 files changed, 19 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Aug 04 10:54:29 2008 -0700
+++ b/ChangeLog	Mon Aug 04 12:45:23 2008 -0600
@@ -1,3 +1,8 @@
+2008-08-04  Eric Blake  <ebb9@byu.net>
+
+	gnumakefile: use space, not TAB, outside of targets
+	* top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
+
 2008-08-02  Jim Meyering  <meyering@redhat.com>
 
 	getdate.y: avoid locale-dependent date parsing failure
--- a/top/GNUmakefile	Mon Aug 04 10:54:29 2008 -0700
+++ b/top/GNUmakefile	Mon Aug 04 12:45:23 2008 -0600
@@ -63,20 +63,20 @@
       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