[oe-commits] Richard Purdie : package.bbclass: Ensure we tell rpmdeps where to find its magic file

git at git.openembedded.org git at git.openembedded.org
Thu Nov 17 12:31:52 UTC 2011


Module: openembedded-core.git
Branch: master-next
Commit: e800c2b81dd56057b56b9eb32838b9c46e47338c
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=e800c2b81dd56057b56b9eb32838b9c46e47338c

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Thu Nov 17 12:28:13 2011 +0000

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.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 d01275f..6775fda 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -1110,7 +1110,7 @@ if [ x"$D" = "x" ]; then
 fi
 }
 
-RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/bin/rpmdeps"
+RPMDEPS = "${STAGING_LIBDIR_NATIVE}/rpm/bin/rpmdeps  --define '_rpmfc_magic_path ${STAGING_DIR_NATIVE}/usr/share/misc/magic.mgc'"
 
 # Collect perfile run-time dependency metadata
 # Output:





More information about the Openembedded-commits mailing list