summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-03-25 00:14:31 -0700
committerGlenn Morris <rgm@gnu.org>2011-03-25 00:14:31 -0700
commitf6ca84c095f29a92f5e651c7ec4f7abec7e5bc43 (patch)
tree0348c42a278c6327cf133ce5a70e2031b4568824 /autogen.sh
parent577c4ec0579864e6e2e243e64cc6662c9fcc8bce (diff)
downloademacs-f6ca84c095f29a92f5e651c7ec4f7abec7e5bc43.tar.gz
Remove some files that autoreconf can supply.
Ref: http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00863.html * compile, config.guess, config.sub, depcomp, install-sh, missing: Remove; autoreconf can supply them. * Makefile.in (sync-from-gnulib): Don't sync config.sub, config.guess, install-sh. Pass -i to autoreconf. * autogen/update_autogen (genfiles): Add compile, config.guess, config.sub, depcomp, install-sh, missing. Pass -i to autoreconf. Discard non-error output from autoreconf in -q case. * autogen/compile, autogen/config.guess, autogen/config.sub: * autogen/depcomp, autogen/install-sh, autogen/missing: New files. * autogen/copy_autogen: Add compile, config.guess, config.sub, depcomp, install-sh, missing. * autogen/README: Add compile, config.guess, config.sub, depcomp, install-sh, missing. * INSTALL.BZR, admin/make-tarball.txt: Add -i to autoreconf args. * .bzrignore: Add compile, config.guess, config.sub, depcomp, install-sh, missing.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 03c39ee9456..ce742a9c18a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -177,7 +177,7 @@ this script.
If you know that the required versions are in your PATH, but this
script has made an error, then you can simply run
-autoreconf -I m4
+autoreconf -i -I m4
instead of this script.
@@ -198,7 +198,7 @@ echo "Your system has the required tools, running autoreconf..."
## Let autoreconf figure out what, if anything, needs doing.
-autoreconf -I m4 || exit $?
+autoreconf -i -I m4 || exit $?
echo "You can now run \`./configure'."