summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2009-03-23 11:30:49 -0600
committerEric Blake <ebb9@byu.net>2009-03-23 13:16:45 -0600
commitdcf9af31d5ffb69054b2ea63be638cb11041c43d (patch)
tree4ffc4adb340756fd2101b953eb2daf2c87e43bdb
parent5798a5d9c8f38ee72492f2f5a6f729c510f2fbaf (diff)
downloadm4-dcf9af31d5ffb69054b2ea63be638cb11041c43d.tar.gz
Don't force file overwrites during bootstrap.
* bootstrap: Ensure that rerunning bootstrap doesn't alter tree. Signed-off-by: Eric Blake <ebb9@byu.net>
-rw-r--r--ChangeLog3
-rwxr-xr-xbootstrap6
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a681aae0..b485138e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2009-03-23 Eric Blake <ebb9@byu.net>
+ Don't force file overwrites during bootstrap.
+ * bootstrap: Ensure that rerunning bootstrap doesn't alter tree.
+
Drop dist-lzma, now that xz replaces lzma.
* configure.ac (AM_INIT_AUTOMAKE): Drop dist-lzma. Until a stable
automake release includes dist-xz, the release process will just
diff --git a/bootstrap b/bootstrap
index 2167f3fe..e9c8200f 100755
--- a/bootstrap
+++ b/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# bootstrap (GNU M4) version 2009-03-18
+# bootstrap (GNU M4) version 2009-03-23
# Written by Gary V. Vaughan <gary@gnu.org>
# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software
@@ -291,8 +291,8 @@ $CONFIG_SHELL gnulib/gnulib-tool --update \
## Autoreconf. ##
## ----------- ##
-func_echo "running: $AUTORECONF --force --verbose --install"
-$AUTORECONF --force --verbose --install || func_fatal_error "autoreconf failed"
+func_echo "running: $AUTORECONF --verbose --install"
+$AUTORECONF --verbose --install || func_fatal_error "autoreconf failed"
exit 0