From: Fabian Keil Date: Thu, 19 Aug 2010 13:50:32 +0000 (+0200) Subject: If the m4 version isn't recognized at all, just say so X-Git-Tag: upstream/7.37.1~4784 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0873cb6577a83a3db8ca59b381ec0ae266a7b15;p=platform%2Fupstream%2Fcurl.git If the m4 version isn't recognized at all, just say so 'm4 version found. You need a GNU m4 installed!' is a bit confusing. --- diff --git a/buildconf b/buildconf index 2b62afd..10eed4c 100755 --- a/buildconf +++ b/buildconf @@ -254,7 +254,11 @@ m4_version=`echo $m4 | sed -e 's/^.* \([0-9]\)/\1/' -e 's/[a-z]* *$//'` if { echo $m4 | grep "GNU" >/dev/null 2>&1; } then echo "buildconf: GNU m4 version $m4_version (ok)" else - echo "buildconf: m4 version $m4 found. You need a GNU m4 installed!" + if test -z "$m4"; then + echo "buildconf: m4 version not recognized. You need a GNU m4 installed!" + else + echo "buildconf: m4 version $m4 found. You need a GNU m4 installed!" + fi exit 1 fi