call the versioned automake when checking the version itself.
authorManish Singh <yosh@gimp.org>
Tue, 28 Jan 2003 21:53:34 +0000 (21:53 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 28 Jan 2003 21:53:34 +0000 (21:53 +0000)
Tue Jan 28 13:52:20 2003  Manish Singh  <yosh@gimp.org>

        * autogen.sh (have_automake): call the versioned automake when
        checking the version itself.

ChangeLog
autogen.sh

index 1702eca..a586330 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jan 28 13:52:20 2003  Manish Singh  <yosh@gimp.org>
+
+       * autogen.sh (have_automake): call the versioned automake when
+       checking the version itself.
+
 Tue Jan 28 15:18:24 2003  Owen Taylor  <otaylor@redhat.com>
 
        * autogen.sh (have_automake): Fix version in complaint
index 4750e59..916bea9 100755 (executable)
@@ -39,7 +39,7 @@ fi
 
 have_automake=false
 if automake-1.4 --version < /dev/null > /dev/null 2>&1 ; then
-       automake_version=`automake --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
+       automake_version=`automake-1.4 --version | grep 'automake (GNU automake)' | sed 's/^[^0-9]*\(.*\)/\1/'`
        case $automake_version in
           1.2*|1.3*|1.4) 
                ;;