From: Leon Woestenberg Date: Thu, 1 May 2008 18:36:58 +0000 (+0000) Subject: binutils-avr32: do not specify specific autoconf version, use whatever we staged. X-Git-Tag: Release-2010-05/1~7064 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f7e838b2adbb4200bba8a577c3c855e2f17bc9b;p=openembedded.git binutils-avr32: do not specify specific autoconf version, use whatever we staged. --- diff --git a/packages/binutils/binutils-avr32.inc b/packages/binutils/binutils-avr32.inc index 0a10b4b67a..2767494940 100644 --- a/packages/binutils/binutils-avr32.inc +++ b/packages/binutils/binutils-avr32.inc @@ -5,18 +5,17 @@ do_avr32_reconf () { if test ${TARGET_ARCH} == avr32; then - (cd ${S} && autoconf2.13) || die "Error running autoconf" + (cd ${S} && autoconf) || die "Error running autoconf" for dir in bfd opcodes binutils ld; do (cd "${S}/$dir" && - aclocal-1.9 && + aclocal && autoconf && - automake-1.9 && + automake && autoheader) || die "Error reconfiguring $dir" done fi } - do_avr32_configure_bfd () { if test ${TARGET_ARCH} == avr32; then (cd ${B} && make configure-bfd) || die "Error running 'make configure-bfd'" @@ -24,8 +23,6 @@ do_avr32_configure_bfd () { fi } - - addtask avr32_reconf after do_patch before do_configure addtask avr32_configure_bfd after do_configure before do_compile