diff options
Diffstat (limited to 'meta')
-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 6fe611489f..912e81e002 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -628,6 +628,10 @@ python () { | |||
628 | elif path.endswith('.rpm'): | 628 | elif path.endswith('.rpm'): |
629 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') | 629 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') |
630 | 630 | ||
631 | # *.deb should DEPEND on xz-native for unpacking | ||
632 | elif path.endswith('.deb'): | ||
633 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') | ||
634 | |||
631 | if needsrcrev: | 635 | if needsrcrev: |
632 | d.setVar("SRCPV", "${@bb.fetch2.get_srcrev(d)}") | 636 | d.setVar("SRCPV", "${@bb.fetch2.get_srcrev(d)}") |
633 | 637 | ||