From 79bed3ebd7393a028043952ea88eb044f23d925d Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Jan 2007 04:41:18 +0000 Subject: [PATCH] support automake-1.10 --- stepmania/autogen.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/stepmania/autogen.sh b/stepmania/autogen.sh index c187a4d8ba..511abc57bf 100755 --- a/stepmania/autogen.sh +++ b/stepmania/autogen.sh @@ -38,8 +38,11 @@ DIE=0 DIE=1 } -# Try automake-1.9, 1.8, and 1.7. -if automake-1.9 --version > /dev/null 2>&1; then +# Try automake-1.7 and up. +if automake-1.10 --version > /dev/null 2>&1; then + ACLOCAL=aclocal-1.10 + AUTOMAKE=automake-1.10 +elif automake-1.9 --version > /dev/null 2>&1; then ACLOCAL=aclocal-1.9 AUTOMAKE=automake-1.9 elif automake-1.8 --version > /dev/null 2>&1; then