[oe-commits] [bitbake] branch master-next updated: data: Don't warn for SkipRecipe in build_dependencies

git at git.openembedded.org git at git.openembedded.org
Tue Apr 11 11:48:45 UTC 2017


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

rpurdie pushed a commit to branch master-next
in repository bitbake.

The following commit(s) were added to refs/heads/master-next by this push:
     new 68759ec  data: Don't warn for SkipRecipe in build_dependencies
68759ec is described below

commit 68759ec099a304c86341c801c5156554169e19dd
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Tue Apr 11 12:48:06 2017 +0100

    data: Don't warn for SkipRecipe in build_dependencies
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/data.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/bb/data.py b/lib/bb/data.py
index 0403754..04da70f 100644
--- a/lib/bb/data.py
+++ b/lib/bb/data.py
@@ -359,6 +359,8 @@ def build_dependencies(key, keys, shelldeps, varflagsexcl, d):
 
         deps |= set((vardeps or "").split())
         deps -= set(varflags.get("vardepsexclude", "").split())
+    except except bb.parse.SkipRecipe:
+        raise
     except Exception as e:
         bb.warn("Exception during build_dependencies for %s" % key)
         raise

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


More information about the Openembedded-commits mailing list