From 46755cc4b85f7f743eab138750c69d58f1b6475e Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Fri, 20 Nov 2015 15:41:33 +0000 Subject: base: add automatic dependency on lzip-native for .lz SRC_URI Now that the SRC_URI is parsed this can be done without false-positives. (From OE-Core rev: 6fac3caf3d70823c830178f2299ceee275a1edd1) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes/base.bbclass | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/classes/base.bbclass') diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 64820a75b1..e6d1599032 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -550,6 +550,10 @@ python () { if path.endswith('.lz4'): d.appendVarFlag('do_unpack', 'depends', ' lz4-native:do_populate_sysroot') + # *.lz should DEPEND on lzip-native for unpacking + elif path.endswith('.lz'): + d.appendVarFlag('do_unpack', 'depends', ' lzip-native:do_populate_sysroot') + # *.xz should DEPEND on xz-native for unpacking elif path.endswith('.xz'): d.appendVarFlag('do_unpack', 'depends', ' xz-native:do_populate_sysroot') -- cgit v1.2.3-54-g00ecf