From: Richard Purdie Date: Sun, 27 Aug 2006 16:02:10 +0000 (+0000) Subject: base.bbclass: Add base_contains and base_both_containg - useful functions for the... X-Git-Tag: Release-2010-05/1~9453^2~875^2~66^2~57^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e609b8070d657674563ae304991f8b3307dc1b73;p=openembedded.git base.bbclass: Add base_contains and base_both_containg - useful functions for the new task-machine code (from poky) --- diff --git a/classes/base.bbclass b/classes/base.bbclass index e413afb2b3..670b97a72d 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -40,6 +40,20 @@ def base_conditional(variable, checkvalue, truevalue, falsevalue, d): else: return falsevalue +def base_contains(variable, checkvalue, truevalue, falsevalue, d): + import bb + if bb.data.getVar(variable,d,1).find(checkvalue) != -1: + return truevalue + else: + return falsevalue + +def base_both_contain(variable1, variable2, checkvalue, d): + import bb + if bb.data.getVar(variable1,d,1).find(checkvalue) != -1 and bb.data.getVar(variable2,d,1).find(checkvalue) != -1: + return checkvalue + else: + return "" + DEPENDS_prepend="${@base_dep_prepend(d)} " def base_set_filespath(path, d):