diff options
author | Christopher Larson <kergoth@gmail.com> | 2014-01-06 10:17:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-09 11:06:14 +0000 |
commit | a4ae70638314a88c3abfcca0d29e1c425f86bea0 (patch) | |
tree | 1b1b9a975dcb7406874acca7c958044b76a27bd8 | |
parent | 7b4790b67e53071e19a243b31c159b2f1014575f (diff) | |
download | openembedded-core-a4ae70638314a88c3abfcca0d29e1c425f86bea0.tar.gz openembedded-core-a4ae70638314a88c3abfcca0d29e1c425f86bea0.tar.bz2 openembedded-core-a4ae70638314a88c3abfcca0d29e1c425f86bea0.zip |
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@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/base.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 73920fde47..2e5217b147 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 |