diff options
| author | André Draszik <git@andred.net> | 2017-11-17 21:43:51 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-04 17:23:59 +0000 |
| commit | 311245d89f222e07200346451fd4bc73c01a7fc3 (patch) | |
| tree | f0e3d3d7c5f4e957c60ccbe770513dc281ae3ba2 | |
| parent | 0845fa12b8004122446c0d6232d1acd64e62973f (diff) | |
| download | poky-311245d89f222e07200346451fd4bc73c01a7fc3.tar.gz | |
base: add automatic dependency on xz-native for .txz SRC_URI
.txz is .tar.xz, so add it, as this can actually be found in the
wild.
(From OE-Core rev: 866ead1d900433e39772973b4b31b7408ed8a215)
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit 58af8c2e4bd17692274fc5a6ac8f8af84319fec6)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -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 e375afbda0..bd0d6e3ca6 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
| @@ -624,7 +624,7 @@ python () { | |||
| 624 | d.appendVarFlag('do_unpack', 'depends', ' lzip-native:do_populate_sysroot') | 624 | d.appendVarFlag('do_unpack', 'depends', ' lzip-native:do_populate_sysroot') |
| 625 | 625 | ||
| 626 | # *.xz should DEPEND on xz-native for unpacking | 626 | # *.xz should DEPEND on xz-native for unpacking |
| 627 | elif path.endswith('.xz'): | 627 | elif path.endswith('.xz') or path.endswith('.txz'): |
| 628 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') | 628 | d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') |
| 629 | 629 | ||
| 630 | # .zip should DEPEND on unzip-native for unpacking | 630 | # .zip should DEPEND on unzip-native for unpacking |
