]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
methodpool: Improve method already seen error message
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 14 Jun 2012 13:19:45 +0000 (14:19 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 14 Jun 2012 13:19:48 +0000 (14:19 +0100)
The current error message is confusing, this improves it to explain the problem
and the possible ways to resolve it.

[YOCTO #2530]

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/methodpool.py

index 1485b1357d8341bc87eeed421d6354c3e1d2dbdf..c5aae9bc093f670574e0b84cedfac12fed3050cb 100644 (file)
@@ -52,7 +52,7 @@ def insert_method(modulename, code, fn):
         if name in ['None', 'False']:
             continue
         elif name in _parsed_fns and not _parsed_fns[name] == modulename:
-            error( "Error Method already seen: %s in' %s' now in '%s'" % (name, _parsed_fns[name], modulename))
+            error("The function %s defined in %s was already declared in %s. BitBake has a global python function namespace so shared functions should be declared in a common include file rather than being duplicated, or if the functions are different, please use different function names." % (name, modulename, _parsed_fns[name]))
         else:
             _parsed_fns[name] = modulename