[oe-commits] [openembedded-core] 01/17: sanity: update for new bb.build.exec_func() behaviour

git at git.openembedded.org git at git.openembedded.org
Tue Aug 6 10:24:51 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit b7a34d2b8d684e5b98f5c286de67dc1b5d8df853
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Tue Aug 6 11:16:32 2019 +0100

    sanity: update for new bb.build.exec_func() behaviour
    
    The pythonexception argument is no more, and passing True is the new behavior.
    
    [ YOCTO #13468 ]
    
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/sanity.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 9429202..2d3f49e 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -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)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list