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 21:07:14 +0100 |
commit | 8302bb9cd83373df98b156f0ca0e4336933113a7 (patch) | |
tree | 60d53af9144bd16ea3431b1294f8423607d22a59 /meta/classes | |
parent | 482317dd1430f06b7988adeeb749b1ddfe0a1b22 (diff) | |
download | poky-8302bb9cd83373df98b156f0ca0e4336933113a7.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
(From OE-Core rev: 9a9330aebe201078a47441e1ef9a19a659017ba8)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-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 7c42cf95e1..1a359a04b7 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -621,7 +621,7 @@ python () { | |||
621 | elif path.endswith('.zip') or path.endswith('.jar'): | 621 | elif path.endswith('.zip') or path.endswith('.jar'): |
622 | d.appendVarFlag('do_unpack', 'depends', ' unzip-native:do_populate_sysroot') | 622 | d.appendVarFlag('do_unpack', 'depends', ' unzip-native:do_populate_sysroot') |
623 | 623 | ||
624 | # file is needed by rpm2cpio.sh | 624 | # Some rpm files may be compressed internally using xz (for example, rpms from Fedora) |
625 | elif path.endswith('.rpm'): | 625 | elif path.endswith('.rpm'): |
626 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') | 626 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') |
627 | 627 | ||