summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2002-05-03 16:11:40 +0000
committerAkim Demaille <akim@epita.fr>2002-05-03 16:11:40 +0000
commit2de3aceee7405354a59708ddf5aae09b38ffd68d (patch)
treea2d4f10c5c70aeb02a06dca5d3a63a60775ebd62 /bootstrap
parent289dd0cf980f65585dc28b40ecd1424add2ba744 (diff)
downloadbison-2de3aceee7405354a59708ddf5aae09b38ffd68d.tar.gz
Gettext 0.11.3 adjustments.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap18
1 files changed, 1 insertions, 17 deletions
diff --git a/bootstrap b/bootstrap
index 63ba1749..c27557b5 100755
--- a/bootstrap
+++ b/bootstrap
@@ -2,21 +2,5 @@
echo "Bootstrapping CVS Bison..."
-# This will run gettextize which will patch some files, and cause
-# autoconf to choke (because for instance intl/Makefile is registered
-# several times).
+echo "running: autoreconf --verbose --install --force"
autoreconf --verbose --install --force
-
-# gettextize modified these files: restore them.
-for f in m4/Makefile.am Makefile.am configure.in
-do
- if test -f "$f~"; then
- mv -f "$f~" "$f"
- fi
-done
-rm -f po/Makevars.template
-
-# Since some files were restored, some files must probably be remade.
-# But automake could not install all of its files, so pass --install
-# for it.
-autoreconf --verbose --install