lib/oe/utils: 'Fix' oe.utils.contains() behaviour
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 25 Jul 2011 18:03:08 +0000 (19:03 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 26 Jul 2011 11:05:39 +0000 (12:05 +0100)
commit9b01857b89412c63ac99fc506da132fae43b9fa3
tree8dd2a4965c66fcd50460dbf8690174a7565bd58f
parentb0e4da352e64dc1796a3c4a927d1508b50d00d3b
lib/oe/utils: 'Fix' oe.utils.contains() behaviour

Currently oe.utils.contains(X, "A", true, false) will return true for substring matches,
e.g. if X = "ABC". This is not what most users expect from the function.

In the common OE use of this function there is the case of "touchscreen" and "screen" being
used as independent variables. Whilst it could be argued there isn't a problem in that
specific case (touchscreens are usually on screens), there is no substring usage of this
function is OE-Core so this patch changes the behaviour to match only full strings.

It also fixes a bug where duplicate entries would confuse multiple matches, e.g.
contains(X, ["A", "B"], ...) would match X = "A A" which is clearly wrong.

(From OE-Core rev: 5c09cbe3bf456e968fc853827698eb18b62e8348)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oe/utils.py