From 0b49b6aea0c4e85a830006210bea074ba09d7b8e Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 5 Oct 1999 23:07:04 +0000 Subject: [PATCH] * 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. --- autogen.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index f192b4965..943b94c44 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 ) -- 2.20.1