]> git.saurik.com Git - bison.git/blame - bootstrap
* data/bison.simple (yyparse): Do not implement @$ = @1.
[bison.git] / bootstrap
CommitLineData
01c56de4
AD
1#! /bin/sh
2
3echo "Bootstrapping CVS Bison..."
4
c47dc59a
AD
5# This will run gettextize which will patch some files, and cause
6# autoconf to choke (because for instance intl/Makefile is registered
7# several times).
8autoreconf --verbose --install --force
01c56de4 9
c47dc59a
AD
10# gettextize modified these files: restore them.
11for f in m4/Makefile.am Makefile.am configure.in
12do
13 if test -f "$f~"; then
14 mv -f "$f~" "$f"
c47dc59a
AD
15 fi
16done
8e521837 17rm -f po/Makevars.template
01c56de4 18
c47dc59a
AD
19# Since some files were restored, some files must probably be remade.
20# But automake could not install all of its files, so pass --install
21# for it.
22autoreconf --verbose --install