On 24 September 2014 12:38, Hongxu Jia <[email protected]> wrote:
> + if "compress_doc" in d.getVar("INHERIT", True):
You'll want to split() the INHERIT variable so you're searching for a
member and not a substring:
if "compress_doc" in d.getVar("INHERIT", True).split()
Without splitting, an inherited class called decompress_docker will
trigger your code.
Ross
--
_______________________________________________
Openembedded-core mailing list
[email protected]
http://lists.openembedded.org/mailman/listinfo/openembedded-core