diff options
author | Leon Woestenberg <leon@sidebranch.com> | 2009-04-25 00:25:59 +0200 |
---|---|---|
committer | Leon Woestenberg <leon@sidebranch.com> | 2009-04-25 00:25:59 +0200 |
commit | 32ad169805e35ca2121f033b63656851294ef41e (patch) | |
tree | f2a43366d8ba5ac710e29fa8b1e082c4dfd43155 | |
parent | 23ac197703f9cc49e7a69ea34e24e4c885e485a1 (diff) |
binutils-avr32.inc: Add DEPENDS autoconf-native and automake-native.
On my fresh Ubuntu 9.04 with the minimal set of host packages installed
required by OpenEmbedded, the atngw100 build failed due to autoconf
and aclocal (from automake package) not being present.
Running 'bitbake autoconf-native and automake-native' solved this.
Adding those two as DEPENDS to binutils-avr32.inc should fix this
for a pristine build.
Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
-rw-r--r-- | recipes/binutils/binutils-avr32.inc | 1 | ||||
-rw-r--r-- | recipes/binutils/binutils_2.17.bb | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/recipes/binutils/binutils-avr32.inc b/recipes/binutils/binutils-avr32.inc index bbae784011..2aa5e3feb5 100644 --- a/recipes/binutils/binutils-avr32.inc +++ b/recipes/binutils/binutils-avr32.inc @@ -2,6 +2,7 @@ # See http://avr32linux.org/twiki/bin/view/Main/BinutilsPatches for # more information +DEPENDS += "autoconf-native automake-native" do_avr32_reconf () { if test ${TARGET_ARCH} == avr32; then diff --git a/recipes/binutils/binutils_2.17.bb b/recipes/binutils/binutils_2.17.bb index 0f0b5d654d..fdee8a56ec 100644 --- a/recipes/binutils/binutils_2.17.bb +++ b/recipes/binutils/binutils_2.17.bb @@ -1,7 +1,7 @@ require binutils.inc require binutils-avr32.inc -PR = "r6" +PR = "r7" SRC_URI = \ "http://ftp.gnu.org/gnu/binutils/binutils-${PV}.tar.bz2 \ |