summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/binutils/binutils-avr32.inc9
1 files changed, 3 insertions, 6 deletions
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