]> git.eshelyaron.com Git - emacs.git/commitdiff
* autogen.sh: Use autoreconf's -f option.
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 14 Apr 2014 05:35:45 +0000 (22:35 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 14 Apr 2014 05:35:45 +0000 (22:35 -0700)
Fixes: debbugs:17258
ChangeLog
autogen.sh

index e9836af43e4eb83ce87bf1e322468858e82edf53..fd544fa87b8b3a470fff7ed071ac372ba01a7c06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2014-04-14  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * autogen.sh: Use autoreconf's -f option (Bug#17258).
+
        Clean up configure-time library handling a bit.
        This patch was inspired by emacs-24 bzr 116961, which fixed
        a bug due to sloppy library handling in 'configure'.
index 6b7c647c4c56ff81aa98c2f0cdb03ddf9e6978de..880f21f0fe97793e488fd9045f4f20565d309d09 100755 (executable)
@@ -202,7 +202,8 @@ echo "Your system has the required tools, running autoreconf..."
 
 
 ## Let autoreconf figure out what, if anything, needs doing.
-autoreconf -i -I m4 || exit $?
+## Use autoreconf's -f option in case autoreconf itself has changed.
+autoreconf -f -i -I m4 || exit $?
 
 ## Create a timestamp, so that './autogen.sh; make' doesn't
 ## cause 'make' to needlessly run 'autoheader'.