summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-01 18:59:19 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-08-01 18:59:19 -0700
commit3f750e43e882ebff19fba2d243873dcdedce1dda (patch)
tree45eb57a020fe4ff23ff51042c1fac0c1e2ea9ea8 /autogen.sh
parente098de975f6e139678b3811388c3bb4f775bfa04 (diff)
downloademacs-3f750e43e882ebff19fba2d243873dcdedce1dda.tar.gz
Avoid needless autoheader after autogen.sh.
* src/stamp-h.in: Remove from bzr repository; no longer needed there. * .bzrignore: Add it. * autogen.sh: Create it.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
index 0c92047e469..cabaaf014a8 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -209,6 +209,10 @@ echo "Your system has the required tools, running autoreconf..."
## Let autoreconf figure out what, if anything, needs doing.
autoreconf -i -I m4 || exit $?
+## Create a timestamp, so that './autogen.sh; make' doesn't
+## cause 'make' to needlessly run 'autoheader'.
+echo timestamp > src/stamp-h.in || exit
+
echo "You can now run \`./configure'."
exit 0