summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@src.gnome.org>2002-06-18 16:17:49 +0000
committerNalin Dahyabhai <nalin@src.gnome.org>2002-06-18 16:17:49 +0000
commit47074ac2f4da626fe6175afe211671de0199776c (patch)
tree55f949703e87ea120d10db49824ef850f194a4ac /autogen.sh
parent5aba0af966e7eea386f95f944cad25b76d07e11b (diff)
downloadvte-47074ac2f4da626fe6175afe211671de0199776c.tar.gz
Correct automake version check to require 1.5, heads-up from Glynn Foster.
* autogen.sh: Correct automake version check to require 1.5, heads-up from Glynn Foster.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/autogen.sh b/autogen.sh
index 46db892a..2866bbdd 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -38,9 +38,9 @@ fi
have_automake=false
if automake --version < /dev/null > /dev/null 2>&1 ; then
- automake_version=`automake --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
+ automake_version=`automake --version | grep 'automake (GNU automake.*)' | sed 's/^[^0-9]*\(.*\)/\1/'`
case $automake_version in
- 1.2*|1.3*|1.4)
+ 1.2*|1.3*|1.4*)
;;
*)
have_automake=true
@@ -49,8 +49,8 @@ if automake --version < /dev/null > /dev/null 2>&1 ; then
fi
if $have_automake ; then : ; else
echo
- echo "You must have automake 1.4-p1 installed to compile $PROJECT."
- echo "Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.4-p1.tar.gz"
+ echo "You must have automake 1.5 installed to compile $PROJECT."
+ echo "Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.5.tar.gz"
echo "(or a newer version if it is available)"
DIE=1
fi