summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2007-03-01 14:33:21 +0000
committerAlexander Larsson <alexl@redhat.com>2007-03-01 14:33:21 +0000
commit52829b630d191dad3f8b611d549a77f2293bdcc9 (patch)
tree8b8718832779509d2203115da11223c460ec193b /autogen.sh
parenta94647669558ebb08c91efb12d3dd15a33bbe7a7 (diff)
2007-03-01 Alexander Larsson <alexl@redhat.com>
* autogen.sh: Require automake 1.9
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 240b1d0..cf2d2c1 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -20,12 +20,12 @@ DIE=0
DIE=1
}
-if automake-1.7 --version < /dev/null > /dev/null 2>&1 ; then
- AUTOMAKE=automake-1.7
- ACLOCAL=aclocal-1.7
+if automake-1.9 --version < /dev/null > /dev/null 2>&1 ; then
+ AUTOMAKE=automake-1.9
+ ACLOCAL=aclocal-1.9
else
echo
- echo "You must have automake 1.7.x installed to compile $PROJECT."
+ echo "You must have automake 1.9.x installed to compile $PROJECT."
echo "Install the appropriate package for your distribution,"
echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
DIE=1