summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Singh <yosh@gimp.org>2003-01-28 21:53:34 +0000
committerManish Singh <yosh@src.gnome.org>2003-01-28 21:53:34 +0000
commit6a8e887528299abe8520cad7bdd2cc03024ff1f0 (patch)
tree210eec96d28f42e0282a6bd6b255d2ef2ef9ac36
parent0079f9923297df427fe5adf64e0086fd6aec6f98 (diff)
downloadatk-6a8e887528299abe8520cad7bdd2cc03024ff1f0.tar.gz
call the versioned automake when checking the version itself.
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.
-rw-r--r--ChangeLog5
-rwxr-xr-xautogen.sh2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1702eca..a586330 100644
--- 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
diff --git a/autogen.sh b/autogen.sh
index 4750e59..916bea9 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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)
;;