diff options
author | Phil Blundell <pb@pbcl.net> | 2014-01-10 12:54:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-10 15:16:51 +0000 |
commit | 7ef0f55a95e8bcb1f5c7190305672fcff3c72d90 (patch) | |
tree | 01737202b79b2561b7e2c4a0e43fa456b73cdcaa /meta/recipes-devtools/binutils/binutils.inc | |
parent | 8b0be3ffb865d5918ed633c4b030640006d18984 (diff) | |
download | poky-7ef0f55a95e8bcb1f5c7190305672fcff3c72d90.tar.gz |
binutils: Also add autoconf-native to DEPENDS
Commit 616354f13732d13c17434d5b60b166f691c25761 is insufficient because
gnu-config-native's gnu-configize script uses perl modules from autoconf
and hence doesn't work unless autoconf-native is staged (which it may
not be if building from sstate).
Ideally g-c-n would itself declare a dependency on autoconf-native but this
is difficult to arrange without creating a dependency loop. autoconf-native
already depends on gnu-config-native (because autoreconf invokes gnu-configize)
and has a build dependency on m4-native, which in turn build-depends on g-c-n
because it configizes itself by steam in do_configure and needs config.{guess,sub}
to be available. Adding some sort of gnu-config-initial-native recipe would
fix the latter problem, but this would be ugly because it would need special-casing
in (at least) autotools.bbclass, and in any case this still wouldn't solve
the problem of autoconf itself depending on g-c-n.
So, the easiest solution to the problem at hand is to arrange for those
few recipes that depend on g-c-n but not autoconf-native to gain that
latter dependency as well.
(From OE-Core rev: 507199e57acfcc99639dc2c53abe194d77d60866)
Signed-off-by: Phil Blundell <pb@pbcl.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/binutils/binutils.inc')
-rw-r--r-- | meta/recipes-devtools/binutils/binutils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index 1259342f7f..b6c9205800 100644 --- a/meta/recipes-devtools/binutils/binutils.inc +++ b/meta/recipes-devtools/binutils/binutils.inc | |||
@@ -11,7 +11,7 @@ BUGTRACKER = "http://sourceware.org/bugzilla/" | |||
11 | SECTION = "devel" | 11 | SECTION = "devel" |
12 | LICENSE = "GPLv3" | 12 | LICENSE = "GPLv3" |
13 | 13 | ||
14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native" | 14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native" |
15 | 15 | ||
16 | inherit autotools gettext multilib_header | 16 | inherit autotools gettext multilib_header |
17 | 17 | ||