1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

* 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.
This commit is contained in:
Jim Blandy 1999-10-05 23:07:04 +00:00
parent 50a0663ce4
commit 0b49b6aea0

View file

@ -1,4 +1,13 @@
#!/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
autoreconf --force "$@"
autoconf
automake
( cd guile-readline; ./autogen.sh )