From 49191c6512ce19340b21387abb035dbd75273396 Mon Sep 17 00:00:00 2001 From: adilger Date: Tue, 18 Aug 2009 20:35:11 +0000 Subject: [PATCH] Branch b1_8 Allow automake 1.11 for building (tested on FC10 client). b=19808 --- build/autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/autogen.sh b/build/autogen.sh index 70cada2..419d8e7 100644 --- a/build/autogen.sh +++ b/build/autogen.sh @@ -105,11 +105,11 @@ for dir in $OPTIONAL_DIRS; do fi done -for AMVER in 1.7 1.8 1.9 1.10; do +for AMVER in 1.7 1.8 1.9 1.10 1.11; do [ "$(which automake-$AMVER 2> /dev/null)" ] && break done -[ "$AMVER" = "1.10" ] && AMOPT="-W no-portability" +[ "${AMVER#1.}" -ge "10" ] && AMOPT="-W no-portability" check_version automake automake-$AMVER "1.7.8" check_version autoconf autoconf "2.57" -- 1.8.3.1