summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 397177a)
raw | patch | inline | side by side (parent: 397177a)
author | gouldtj <gouldtj@users.sourceforge.net> | |
Wed, 16 Jan 2008 06:41:59 +0000 (06:41 +0000) | ||
committer | gouldtj <gouldtj@users.sourceforge.net> | |
Wed, 16 Jan 2008 06:41:59 +0000 (06:41 +0000) |
Increasing automake to 1.10 for tar options. May be able to go lower, didn't check them all. 1.7 doesn't work.
autogen.sh | patch | blob | history |
diff --git a/autogen.sh b/autogen.sh
index 543e108f936d70d361969d105373bc0b30b34e8e..304e49dc0667550300ebf7266922668e4d934a91 100755 (executable)
--- a/autogen.sh
+++ b/autogen.sh
echo -n "checking for automake >= $AUTOMAKE_REQUIRED_VERSION ... "
# Prefer earlier versions just so that the earliest supported version gets test coverage by developers.
-if (automake-1.7 --version) < /dev/null > /dev/null 2>&1; then
- AUTOMAKE=automake-1.7
- ACLOCAL=aclocal-1.7
-elif (automake-1.8 --version) < /dev/null > /dev/null 2>&1; then
- AUTOMAKE=automake-1.8
- ACLOCAL=aclocal-1.8
+if (automake-1.10 --version) < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-1.10
+ ACLOCAL=aclocal-1.10
elif (automake --version) < /dev/null > /dev/null 2>&1; then
# Leave unversioned automake for a last resort: it may be a version earlier
# than what we require.
ACLOCAL=aclocal
else
echo
- echo " You must have automake 1.7 or newer installed to compile $PROJECT."
+ echo " You must have automake 1.10 or newer installed to compile $PROJECT."
echo " Get ftp://ftp.gnu.org/pub/gnu/automake/automake-1.8.5.tar.gz"
echo " (or a newer version of 1.8 if it is available; note that 1.9 is buggy)"
DIE=1