[oe-commits] Christopher Larson : base.bbclass: pull in file-native for src.rpm

git at git.openembedded.org git at git.openembedded.org
Sun Feb 9 11:01:55 UTC 2014


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

Author: Christopher Larson <kergoth at gmail.com>
Date:   Mon Jan  6 10:17:27 2014 -0700

base.bbclass: pull in file-native for src.rpm

Unpacking an src.rpm uses rpm2cpio.sh, which requires 'file'.

Without this, builds of rpm on a host without 'file' installed will fail with
very strange messages.

(From OE-Core master rev: 97e1d84e2d1a74791ce6af88ddc27963bc0e1bec)

Signed-off-by: Christopher Larson <kergoth at gmail.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/base.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 73920fd..2e5217b 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -582,6 +582,10 @@ python () {
     if ".zip" in srcuri:
         d.appendVarFlag('do_unpack', 'depends', ' unzip-native:do_populate_sysroot')
 
+    # file is needed by rpm2cpio.sh
+    if ".src.rpm" in srcuri:
+        d.appendVarFlag('do_unpack', 'depends', ' file-native:do_populate_sysroot')
+
     set_packagetriplet(d)
 
     # 'multimachine' handling



More information about the Openembedded-commits mailing list