From: Andreas Oberritter Date: Wed, 16 Feb 2011 11:06:20 +0000 (+0000) Subject: utils.py: use bb.utils.vercmp_string instead of bb.vercmp X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a07e7b983aae3a03a69155cacda12eebf384153b;p=openembedded.git utils.py: use bb.utils.vercmp_string instead of bb.vercmp * Fixes deprecation warning with BitBake master. Signed-off-by: Andreas Oberritter CC: Chris Larson Signed-off-by: Tom Rini --- diff --git a/lib/oe/utils.py b/lib/oe/utils.py index f7d2946a6a..edd0e5074b 100644 --- a/lib/oe/utils.py +++ b/lib/oe/utils.py @@ -35,7 +35,7 @@ def less_or_equal(variable, checkvalue, truevalue, falsevalue, d): return falsevalue def version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d): - result = bb.vercmp(bb.data.getVar(variable,d,True), checkvalue) + result = bb.utils.vercmp_string(bb.data.getVar(variable,d,True), checkvalue) if result <= 0: return truevalue else: