]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
Fix typo in previous checkin. Reported by Alexandre Duret-Lutz.
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 11 Dec 2004 01:24:56 +0000 (01:24 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 11 Dec 2004 01:24:56 +0000 (01:24 +0000)
bin/Makefile.am

index 912f89d8fe39dd5f63c7bf48f5275f90b94f1636..b1a0897a7afbf19571a775fb11eb77ef1bf47e2a 100644 (file)
@@ -59,14 +59,13 @@ autoconf.in: $(srcdir)/autoconf.as $(m4sh_m4f_dependencies)
 ## when the prefix etc. changes.  It took quite a while to have these
 ## rules correct, don't break them!
 ## Use chmod -w to prevent people from editing the wrong file by accident.
-$(bin_SCRIPTS): Makefile
+autoheader autom4te autoreconf autoscan autoupdate ifnames: Makefile
        rm -f $@ $@.tmp
        $(edit) $(srcdir)/$@.in >$@.tmp
        chmod +x $@.tmp
        chmod a-w $@.tmp
        mv $@.tmp $@
 
-autoconf: $(srcdir)/autoconf.in
 autoheader: $(srcdir)/autoheader.in
 autom4te: $(srcdir)/autom4te.in
 autoreconf: $(srcdir)/autoreconf.in
@@ -74,6 +73,14 @@ autoscan: $(srcdir)/autoscan.in
 autoupdate: $(srcdir)/autoupdate.in
 ifnames: $(srcdir)/ifnames.in
 
+# autoconf.in is in ., not in $(srcdir).
+autoconf: autoconf.in Makefile
+       rm -f $@ $@.tmp
+       $(edit) $@.in >$@.tmp
+       chmod +x $@.tmp
+       chmod a-w $@.tmp
+       mv $@.tmp $@
+
 
 ## --------------- ##
 ## Building TAGS.  ##