summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2010-02-16 01:11:21 +0100
committerVincent Untz <vuntz@gnome.org>2010-03-10 03:29:50 +0100
commitabaf456abfecd26c18e4241edb40c177161487c1 (patch)
tree09a42cb5176b6a6023312223b3f2e74d7923f4d8 /autogen.sh
parent91bce492f1cddea3c43cbf9fbbf136d87d8c9acb (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-xautogen.sh13
1 files changed, 4 insertions, 9 deletions
diff --git a/autogen.sh b/autogen.sh
index 209b1f8..dd756de 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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
}