From 176c31b84a0bfb186e159a2e9713199fdcb4bd65 Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Tue, 12 Jan 2010 22:27:02 +0000 Subject: [PATCH] autoconf 2.62 works well. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@908 81a1dc3b-b13d-400b-aceb-764788c761c2 --- ChangeLog | 4 ++++ bootstrap | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index ee21e2a7..b35a2f41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-01-12 Joerg Wunsch + + * bootstrap: autoconf 2.62 works well. + 2010-01-12 Joerg Wunsch Various fixes for Xmega devices. diff --git a/bootstrap b/bootstrap index 6f85e778..cacf4434 100755 --- a/bootstrap +++ b/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# autoconf-2.59 or 2.61 is known to work +# autoconf-2.59 or 2.61, 2.62 is known to work : ${AUTOHEADER="autoheader${AC_VER}"} : ${AUTOCONF="autoconf${AC_VER}"} @@ -14,9 +14,9 @@ AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \ cut -d ' ' -f 4) 2>/dev/null` -if [ "$AUTOCONF_VER" != "2.59" -a "$AUTOCONF_VER" != "2.61" ] +if [ "$AUTOCONF_VER" != "2.59" -a "$AUTOCONF_VER" != "2.61" -a "$AUTOCONF_VER" != "2.62" ] then - echo "Warning: This program is tested with autoconf version 2.59 and 2.61." + echo "Warning: This program is tested with autoconf version 2.59, 2.61 and 2.62." echo "You are using `${AUTOCONF} --version | head -n 1`." fi