]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Remove the autoreconf-provided INSTALL, so that we regenerate it.
authorJim Meyering <meyering@redhat.com>
Sun, 11 Nov 2007 20:14:20 +0000 (21:14 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 12 Nov 2007 23:10:48 +0000 (00:10 +0100)
* GNUmakefile (dummy): Remove INSTALL.

ChangeLog
GNUmakefile

index 770b9268f5b550ea04ffe73e1614bab4ed62a312..16ddf6a60a5cdca9c116766ade1ada8d6c85eca5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-11-12  Jim Meyering  <meyering@redhat.com>
 
+       Remove the autoreconf-provided INSTALL, so that we regenerate it.
+       * GNUmakefile (dummy): Remove INSTALL.
+
        Remove racy commands to build scripts in bin/ and tests/.
        * man/Makefile.am (.x.1): Now that scripts in bin/ and tests/
        are guaranteed to be built, remove the rules that tried to build
index cec6444a2856899048b435dfb5e613e4106cb3df..8929a2432681d30f13dd674d9bcd5147a7309f3f 100644 (file)
@@ -47,13 +47,14 @@ include Makefile
 # for others: rerunning autoconf and recompiling everything isn't cheap.
 # The $(MAKE) clean is required, to remove all traces of the previous
 # version string, which would otherwise cause a few test failures.
+# Remove the autoreconf-provided INSTALL, so that we regenerate it.
 ifeq (0,$(MAKELEVEL))
   _is-dist-target = $(filter dist% alpha beta major,$(MAKECMDGOALS))
   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)
+      dummy := $(shell rm -rf autom4te.cache; autoreconf -i && $(MAKE) clean && rm -f INSTALL)
     endif
   endif
 endif