[oe-commits] [openembedded-core] 01/51: image_types: check COMPRESS_DEPENDS for backwards compatibility

git at git.openembedded.org git at git.openembedded.org
Tue Aug 30 15:31:55 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 12a8ee44f05e21d5814e31cb9e13c9eab236b836
Author: Mikko Ylinen <mikko.ylinen at intel.com>
AuthorDate: Tue Aug 30 08:38:45 2016 +0300

    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 <mikko.ylinen at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/image_types.bbclass | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/image_types.bbclass b/meta/classes/image_types.bbclass
index 2e852af..21e2ff9 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))

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list