diff options
| -rw-r--r-- | meta/classes/base.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 843c380a9e..6824f8e512 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -516,6 +516,13 @@ python () { | |||
| 516 | depends = depends + " shasum-native:do_populate_sysroot" | 516 | depends = depends + " shasum-native:do_populate_sysroot" |
| 517 | bb.data.setVarFlag('do_fetch', 'depends', depends, d) | 517 | bb.data.setVarFlag('do_fetch', 'depends', depends, d) |
| 518 | 518 | ||
| 519 | # *.xz should depends on xz-native for unpacking | ||
| 520 | # Not endswith because of "*.patch.xz;patch=1". Need bb.decodeurl in future | ||
| 521 | if '.xz' in srcuri: | ||
| 522 | depends = bb.data.getVarFlag('do_unpack', 'depends', d) or "" | ||
| 523 | depends = depends + " xz-native:do_populate_sysroot" | ||
| 524 | bb.data.setVarFlag('do_unpack', 'depends', depends, d) | ||
| 525 | |||
| 519 | # 'multimachine' handling | 526 | # 'multimachine' handling |
| 520 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) | 527 | mach_arch = bb.data.getVar('MACHINE_ARCH', d, 1) |
| 521 | pkg_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) | 528 | pkg_arch = bb.data.getVar('PACKAGE_ARCH', d, 1) |
