diff options
-rw-r--r-- | meta/classes/base.bbclass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3ca4e47767..f12b3cb870 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -354,6 +354,12 @@ python () { | |||
354 | depends = depends + " xz-native:do_populate_sysroot" | 354 | depends = depends + " xz-native:do_populate_sysroot" |
355 | bb.data.setVarFlag('do_unpack', 'depends', depends, d) | 355 | bb.data.setVarFlag('do_unpack', 'depends', depends, d) |
356 | 356 | ||
357 | # unzip-native should already be staged before unpacking ZIP recipes | ||
358 | if ".zip" in srcuri: | ||
359 | depends = bb.data.getVarFlag('do_unpack', 'depends', d) or "" | ||
360 | depends = depends + " unzip-native:do_populate_sysroot" | ||
361 | bb.data.setVarFlag('do_unpack', 'depends', depends, d) | ||
362 | |||
357 | # 'multimachine' handling | 363 | # 'multimachine' handling |
358 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) | 364 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) |
359 | pkg_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) | 365 | pkg_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) |