From: Mikko Ylinen Date: Tue, 30 Aug 2016 05:38:45 +0000 (+0300) Subject: image_types: check COMPRESS_DEPENDS for backwards compatibility X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~24503 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12a8ee44f05e21d5814e31cb9e13c9eab236b836;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git image_types: check COMPRESS_DEPENDS for backwards compatibility To complete the transition/renaming to chained image type CONVERSION while maintaining bacwards compatibility to COMPRESS(ION), make sure also COMPRESS_DEPENDS is checked. Without this, the dependencies for legacy COMPRESSIONTYPES do not get built. Signed-off-by: Mikko Ylinen Signed-off-by: Richard Purdie --- diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass index 2e852af70a2..21e2ff94867 100644 --- a/meta/classes/image_types.bbclass +++ b/meta/classes/image_types.bbclass @@ -30,6 +30,7 @@ def imagetypes_getdepends(d): adddep(d.getVar('IMAGE_DEPENDS_%s' % typedepends, True) , deps) for ctype in resttypes: adddep(d.getVar("CONVERSION_DEPENDS_%s" % ctype, True), deps) + adddep(d.getVar("COMPRESS_DEPENDS_%s" % ctype, True), deps) # Sort the set so that ordering is consistant return " ".join(sorted(deps))