From f4181f0223f454ab24024c632a9e996d61950abd Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Mon, 31 Mar 2014 17:46:02 +0200 Subject: [PATCH] autogen.sh: advice about installing autoconf if autoreconf not found --- autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index e1e46f826b..6546c6eb29 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,8 @@ #!/bin/sh - +which autoreconf > /dev/null +if [ $? -ne 0 ] ; then + echo "Please install autoconf" && exit 1; +fi mkdir -p m4 autoreconf -i --force --warnings=none -I . -I m4 ./configure --enable-maintainer-mode $*