binutils-avr32: do not specify specific autoconf version, use whatever we staged.
authorLeon Woestenberg <leon.woestenberg@gmail.com>
Thu, 1 May 2008 18:36:58 +0000 (18:36 +0000)
committerLeon Woestenberg <leon.woestenberg@gmail.com>
Thu, 1 May 2008 18:36:58 +0000 (18:36 +0000)
packages/binutils/binutils-avr32.inc

index 0a10b4b..2767494 100644 (file)
@@ -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