From: Jon A. Cruz Date: Thu, 25 Feb 2010 03:02:24 +0000 (-0800) Subject: Fixing autogen for OS X. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9e54d0d278226f084a01468ac4a5cc4ba87d5ec3;p=inkscape.git Fixing autogen for OS X. --- diff --git a/autogen.sh b/autogen.sh index 6a7c6317b..c1e8ad42c 100755 --- a/autogen.sh +++ b/autogen.sh @@ -86,7 +86,10 @@ fi 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.10 --version) < /dev/null > /dev/null 2>&1; then +if (automake-1.11 --version) < /dev/null > /dev/null 2>&1; then + AUTOMAKE=automake-1.11 + ACLOCAL=aclocal-1.11 +elif (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