summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe')
-rw-r--r--meta/lib/oe/utils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index fbda7035f1..93b0763b0a 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -25,6 +25,13 @@ def conditional(variable, checkvalue, truevalue, falsevalue, d):
25 else: 25 else:
26 return falsevalue 26 return falsevalue
27 27
28def vartrue(var, iftrue, iffalse, d):
29 import oe.types
30 if oe.types.boolean(d.getVar(var)):
31 return iftrue
32 else:
33 return iffalse
34
28def less_or_equal(variable, checkvalue, truevalue, falsevalue, d): 35def less_or_equal(variable, checkvalue, truevalue, falsevalue, d):
29 if float(d.getVar(variable)) <= float(checkvalue): 36 if float(d.getVar(variable)) <= float(checkvalue):
30 return truevalue 37 return truevalue
@@ -467,3 +474,4 @@ class ImageQAFailed(bb.build.FuncFailed):
467 msg = msg + ' (%s)' % self.description 474 msg = msg + ' (%s)' % self.description
468 475
469 return msg 476 return msg
477