mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 20:33:03 +00:00
15 lines
304 B
Bash
Executable File
15 lines
304 B
Bash
Executable File
#! /bin/sh
|
|
|
|
echo "Bootstrapping CVS Bison..."
|
|
|
|
autoreconf --force --install --verbose
|
|
|
|
# Because of Gettext
|
|
mv -f m4/Makefile.am~ m4/Makefile.am
|
|
mv -f Makefile.am~ Makefile.am
|
|
mv -f configure.in~ configure.in
|
|
touch m4/Makefile.am Makefile.am configure.in
|
|
rm -f po/Makevars.template
|
|
|
|
autoreconf --verbose
|