From 3c5b9cf15f2034b704f571a75ad102cc57f9a3b6 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 23 May 2013 10:47:45 +0100 Subject: bitbake: methodpool: Conflicting methodnames should be a fatal error When this error occurs, the build should stop, not continue uninterrupted. [YOCTO #4460] (Bitbake rev: acd6d7ffa8813b3b11cad9145e8e614a695ae04a) Signed-off-by: Richard Purdie --- bitbake/lib/bb/methodpool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/methodpool.py') diff --git a/bitbake/lib/bb/methodpool.py b/bitbake/lib/bb/methodpool.py index 2fb5d96a3f..8ad23c650b 100644 --- a/bitbake/lib/bb/methodpool.py +++ b/bitbake/lib/bb/methodpool.py @@ -50,7 +50,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("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])) + bb.fatal("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 -- cgit v1.2.3-54-g00ecf