summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/base.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 2e5217b147..81fc30590a 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -573,6 +573,11 @@ python () {
573 elif "osc://" in srcuri: 573 elif "osc://" in srcuri:
574 d.appendVarFlag('do_fetch', 'depends', ' osc-native:do_populate_sysroot') 574 d.appendVarFlag('do_fetch', 'depends', ' osc-native:do_populate_sysroot')
575 575
576 # *.lz4 should depends on lz4-native for unpacking
577 # Not endswith because of "*.patch.lz4;patch=1". Need bb.fetch.decodeurl in future
578 if '.lz4' in srcuri:
579 d.appendVarFlag('do_unpack', 'depends', ' lz4-native:do_populate_sysroot')
580
576 # *.xz should depends on xz-native for unpacking 581 # *.xz should depends on xz-native for unpacking
577 # Not endswith because of "*.patch.xz;patch=1". Need bb.fetch.decodeurl in future 582 # Not endswith because of "*.patch.xz;patch=1". Need bb.fetch.decodeurl in future
578 if '.xz' in srcuri: 583 if '.xz' in srcuri: