diff options
author | Koen Kooi <koen@openembedded.org> | 2008-05-10 19:01:38 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-05-10 19:01:38 +0000 |
commit | 9ea424383c69a8fcfeeac14705dcc10162b1e2c7 (patch) | |
tree | 351de1185cae3744dcec2a77cc79327a712700ee /packages/binutils/binutils-avr32.inc | |
parent | 1076ae29c52892a83d769cae94f452b88737aa65 (diff) |
binutils-avr32.inc: remove the "2.13" from autoconf, we don't want to rely on host tools, certainly not without checking it they exist. This commit fixes the build for me on debian unstable and ubuntu hardy
Diffstat (limited to 'packages/binutils/binutils-avr32.inc')
-rw-r--r-- | packages/binutils/binutils-avr32.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/binutils/binutils-avr32.inc b/packages/binutils/binutils-avr32.inc index 38c3866f96..2767494940 100644 --- a/packages/binutils/binutils-avr32.inc +++ b/packages/binutils/binutils-avr32.inc @@ -5,7 +5,7 @@ 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 && |