diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-17 12:28:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-17 12:31:01 +0000 |
commit | f2d077255d9ddf9b87e9a781b989bcce69047cf5 (patch) | |
tree | b941d78ef8e114d064a5c6688269da78318ead1e /meta | |
parent | 5e109fc37e1eaa9cb81d22b34f91b5c11af5a69b (diff) | |
download | poky-f2d077255d9ddf9b87e9a781b989bcce69047cf5.tar.gz |
package.bbclass: Ensure we tell rpmdeps where to find its magic file
Without this, if rpmddeps came from a sstate package which was relocated
it might not find its magic file and if that happens, requires/provides
in packages could get corrupted. This leads to failures at rootfs time
during builds with messages like:
libdbus-1.so.3 is needed by libdbus-glib-1-2-0.92-r1.armv5te
since the provides would be missing in the dbus package.
(From OE-Core rev: abe2a948905a997314c61a8fcd35e2b42a3f4408)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index d01275f33a..6775fda480 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -1110,7 +1110,7 @@ if [ x"$D" = "x" ]; then | |||
1110 | fi | 1110 | fi |
1111 | } | 1111 | } |
1112 | 1112 | ||
1113 | RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/bin/rpmdeps" | 1113 | RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/bin/rpmdeps --define '_rpmfc_magic_path ${STAGING_DIR_NATIVE}/usr/share/misc/magic.mgc'" |
1114 | 1114 | ||
1115 | # Collect perfile run-time dependency metadata | 1115 | # Collect perfile run-time dependency metadata |
1116 | # Output: | 1116 | # Output: |