diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-11-12 08:33:23 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-20 13:27:52 +0000 |
commit | 3c7cf5dc3397569f012613def2b467cb713e30fa (patch) | |
tree | 140e890bf85da0e9bc79f7da466618d4b7e3ab98 /bitbake/lib/bb | |
parent | d895e9632d34b3141c25940b6ba79398f05d85aa (diff) | |
download | poky-3c7cf5dc3397569f012613def2b467cb713e30fa.tar.gz |
bitbake: bb.codeparser.py: Remove reference for oe.utils.contains
The oe.utils.contains function has been removed from OE-Core metadata
as the references for it has been replaced to use the
bb.utils.contains.
(Bitbake rev: 5cfdebe7a67dccc7552ff80c1ccc970e36d562df)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/codeparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/codeparser.py b/bitbake/lib/bb/codeparser.py index 8b8f91a762..21a36f64ca 100644 --- a/bitbake/lib/bb/codeparser.py +++ b/bitbake/lib/bb/codeparser.py | |||
@@ -178,7 +178,7 @@ class BufferedLogger(Logger): | |||
178 | 178 | ||
179 | class PythonParser(): | 179 | class PythonParser(): |
180 | getvars = (".getVar", ".appendVar", ".prependVar") | 180 | getvars = (".getVar", ".appendVar", ".prependVar") |
181 | containsfuncs = ("bb.utils.contains", "base_contains", "oe.utils.contains", "bb.utils.contains_any") | 181 | containsfuncs = ("bb.utils.contains", "base_contains", "bb.utils.contains_any") |
182 | execfuncs = ("bb.build.exec_func", "bb.build.exec_task") | 182 | execfuncs = ("bb.build.exec_func", "bb.build.exec_task") |
183 | 183 | ||
184 | def warn(self, func, arg): | 184 | def warn(self, func, arg): |