1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/autogen.sh
Jim Blandy 0b49b6aea0 * autogen.sh: Don't call autoreconf at all; it's not reliable.
Instead, call the various tools explicitly.  Invoke
guile-readline's autogen.sh script.
1999-10-05 23:07:04 +00:00

13 lines
206 B
Bash
Executable file

#!/bin/sh
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of a Guile source tree."
exit 1
}
aclocal -I .
autoheader
autoconf
automake
( cd guile-readline; ./autogen.sh )