diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2014-01-06 10:23:09 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-06 22:17:30 +0000 |
commit | 5ef95e148f1d89f43f68c59135d1a1d133ef4ff8 (patch) | |
tree | b9d271a3ae59700ddcc4121f3fe53fe3bd7d389e | |
parent | e7fcf1bce8a3f98afc6860b56f5a4702286b51c1 (diff) | |
download | poky-5ef95e148f1d89f43f68c59135d1a1d133ef4ff8.tar.gz |
guile: fix the depends for target recipes
The depenency on guild-native and libatomics-ops is missing
in multilib build, fix the depends with class-target.
(From OE-Core rev: 88f1913f7cea54f0e4e1024ea506b5ce9faea96b)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/guile/guile_2.0.9.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/guile/guile_2.0.9.bb b/meta/recipes-devtools/guile/guile_2.0.9.bb index 4c3fe28b21..9845682c0e 100644 --- a/meta/recipes-devtools/guile/guile_2.0.9.bb +++ b/meta/recipes-devtools/guile/guile_2.0.9.bb | |||
@@ -33,7 +33,7 @@ BBCLASSEXTEND = "native" | |||
33 | 33 | ||
34 | DEPENDS = "libunistring bdwgc gmp libtool libffi" | 34 | DEPENDS = "libunistring bdwgc gmp libtool libffi" |
35 | # add guile-native only to the target recipe's DEPENDS | 35 | # add guile-native only to the target recipe's DEPENDS |
36 | DEPENDS += "${@['guile-native libatomics-ops', ''][d.getVar('PN', True) != 'guile']}" | 36 | DEPENDS_append_class-target = " guile-native libatomics-ops" |
37 | 37 | ||
38 | RDEPENDS_${PN}_append_libc-glibc_class-target = "glibc-gconv-iso8859-1" | 38 | RDEPENDS_${PN}_append_libc-glibc_class-target = "glibc-gconv-iso8859-1" |
39 | 39 | ||