diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 95daace6c6..02d5442940 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py | |||
@@ -28,7 +28,7 @@ def less_or_equal(variable, checkvalue, truevalue, falsevalue, d): | |||
28 | return falsevalue | 28 | return falsevalue |
29 | 29 | ||
30 | def version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d): | 30 | def version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d): |
31 | result = bb.vercmp(d.getVar(variable,True), checkvalue) | 31 | result = bb.utils.vercmp_string(d.getVar(variable,True), checkvalue) |
32 | if result <= 0: | 32 | if result <= 0: |
33 | return truevalue | 33 | return truevalue |
34 | else: | 34 | else: |