diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2017-08-21 02:09:57 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 08:47:02 +0100 |
commit | 624da0cc25cd3fb352fa58ee69bb52d66aa0ad66 (patch) | |
tree | caacff099055b85bad19b8b46693328a6b29830f /meta | |
parent | b1f237ebd0d4180c5d23a0ecd9aaf7193c63a48a (diff) | |
download | poky-624da0cc25cd3fb352fa58ee69bb52d66aa0ad66.tar.gz |
gdk-pixbuf: fix ptest RDEPENDS for multilib build
Don't hardcode the package name, it could be gdk-pixbuf or
lib32-gdk-pixbuf.
(From OE-Core rev: 92a299a550b5b9c68c0285fdeb3d4c9defa0dede)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.8.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.8.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.8.bb index 3d16ee0d8c..14e63d9683 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.8.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.36.8.bb | |||
@@ -74,7 +74,7 @@ python populate_packages_prepend () { | |||
74 | 74 | ||
75 | # The test suite exercises all the loaders, so ensure they are all | 75 | # The test suite exercises all the loaders, so ensure they are all |
76 | # dependencies of the ptest package. | 76 | # dependencies of the ptest package. |
77 | d.appendVar("RDEPENDS_gdk-pixbuf-ptest", " " + packages) | 77 | d.appendVar("RDEPENDS_%s-ptest" % d.getVar('PN', True), " " + packages) |
78 | } | 78 | } |
79 | 79 | ||
80 | do_install_append() { | 80 | do_install_append() { |