]> code.ossystems Code Review - openembedded-core.git/commitdiff
sanity: update for new bb.build.exec_func() behaviour
authorRoss Burton <ross.burton@intel.com>
Tue, 6 Aug 2019 10:16:32 +0000 (11:16 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 6 Aug 2019 10:23:36 +0000 (11:23 +0100)
The pythonexception argument is no more, and passing True is the new behavior.

[ YOCTO #13468 ]

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/sanity.bbclass

index 9429202dcad5e1f0bd66a7c786b373854e353a5d..2d3f49eb1a748cf2ed7d553a080e1859e7cfa621 100644 (file)
@@ -573,7 +573,7 @@ def sanity_check_conffiles(d):
         if check_conf_exists(conffile, d) and d.getVar(current_version) is not None and \
                 d.getVar(current_version) != d.getVar(required_version):
             try:
-                bb.build.exec_func(func, d, pythonexception=True)
+                bb.build.exec_func(func, d)
             except NotImplementedError as e:
                 bb.fatal(str(e))
             d.setVar("BB_INVALIDCONF", True)