From fceba036279a0e9bb39aebd862b70ad1bb5b3f40 Mon Sep 17 00:00:00 2001 From: Martin Lucina Date: Mon, 15 Mar 2010 15:45:38 +0100 Subject: Cleanups to autogen.sh Use POSIX "command -v" construct to test for prerequisite commands Clarify error messages on failure --- autogen.sh | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 2b954af..f431c6d 100755 --- a/autogen.sh +++ b/autogen.sh @@ -16,36 +16,34 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Script to generate all required files from fresh svn checkout. +# Script to generate all required files from fresh git checkout. -pkg-config --version > /dev/null 2>&1 +command -v pkg-config >/dev/null 2>&1 if [ $? -ne 0 ]; then - echo - echo "Could not find pkg-config, pkg.m4 macro is probably not installed." - echo + echo "autogen.sh: error: could not find pkg-config. pkg-config is required to run autogen.sh." 1>&2 exit 1 fi -libtool --version > /dev/null 2>&1 +command -v libtool >/dev/null 2>&1 if [ $? -ne 0 ]; then - echo - echo "Could not find libtool, libtool.m4 macro is probably not installed." - echo + echo "autogen.sh: error: could not find libtool. libtool is required to run autogen.sh." 1>&2 exit 1 fi -mkdir -p config +command -v autoreconf >/dev/null 2>&1 if [ $? -ne 0 ]; then - echo - echo "Cannot create config directory." - echo + echo "autogen.sh: error: could not find autoreconf. autoconf and automake are required to run autogen.sh." + exit 1 +fi + +mkdir -p ./config +if [ $? -ne 0 ]; then + echo "autogen.sh: error: could not create directory: ./config." 1>&2 exit 1 fi autoreconf --install --force --verbose -I config if [ $? -ne 0 ]; then - echo - echo "Could not run autoreconf, check autotools installation." - echo + echo "autogen.sh: error: autoreconf exited with status $?" 1>&2 exit 1 fi -- cgit v1.2.3