diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-05-18 13:59:57 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-29 11:25:06 +0100 |
commit | 9a9330aebe201078a47441e1ef9a19a659017ba8 (patch) | |
tree | bd0f815519421ea2a05225469cfda3146a87f19d /meta/classes/base.bbclass | |
parent | 5f5603c33368d7b0143aeb77a95bed90bb92cb51 (diff) | |
download | openembedded-core-contrib-9a9330aebe201078a47441e1ef9a19a659017ba8.tar.gz |
base.bbclass: update obsolete comment about rpm do_unpack dependencies
The previous comment was made obsolete by:
http://git.openembedded.org/openembedded-core/commit/?id=2f31f1795bc0c85b1646bc7d9596bbe778cb84e5
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes/base.bbclass')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 7c42cf95e19..1a359a04b78 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -621,7 +621,7 @@ python () { elif path.endswith('.zip') or path.endswith('.jar'): d.appendVarFlag('do_unpack', 'depends', ' unzip-native:do_populate_sysroot') - # file is needed by rpm2cpio.sh + # Some rpm files may be compressed internally using xz (for example, rpms from Fedora) elif path.endswith('.rpm'): d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') |