diff options
author | Vincent Untz <vuntz@gnome.org> | 2010-02-16 01:11:21 +0100 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2010-03-10 03:29:50 +0100 |
commit | abaf456abfecd26c18e4241edb40c177161487c1 (patch) | |
tree | 09a42cb5176b6a6023312223b3f2e74d7923f4d8 /autogen.sh | |
parent | 91bce492f1cddea3c43cbf9fbbf136d87d8c9acb (diff) |
Do not try to use versioned binaries of automake/aclocal
We were trying to use binaries versioned 1.7 which is quite old anyway.
Any real build system will have non-versioned binaries.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -21,19 +21,14 @@ DIE=0 DIE=1 } -AUTOMAKE=automake-1.7 -ACLOCAL=aclocal-1.7 - -($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { - AUTOMAKE=automake - ACLOCAL=aclocal -} +AUTOMAKE=automake +ACLOCAL=aclocal ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $PROJECT." - echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz" - echo "(or a newer version if it is available)" + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" DIE=1 } |