aboutsummaryrefslogtreecommitdiffstats
path: root/packages/binutils
diff options
context:
space:
mode:
authorLeon Woestenberg <leon.woestenberg@gmail.com>2008-05-01 18:36:58 +0000
committerLeon Woestenberg <leon.woestenberg@gmail.com>2008-05-01 18:36:58 +0000
commit0f7e838b2adbb4200bba8a577c3c855e2f17bc9b (patch)
tree993ee775c65ac0f7d5d5d29a2a14983eab4bb4d5 /packages/binutils
parent1c992c7413e90f210bedbf4b05ae2bd6e988bcbe (diff)
downloadopenembedded-0f7e838b2adbb4200bba8a577c3c855e2f17bc9b.tar.gz
binutils-avr32: do not specify specific autoconf version, use whatever we staged.
Diffstat (limited to 'packages/binutils')
-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