[oe-commits] [bitbake] 20/20: lib/bb/cooker.py: fix for BBFILE_PATTERN = ""

git at git.openembedded.org git at git.openembedded.org
Fri Nov 4 12:56:00 UTC 2016


rpurdie pushed a commit to branch master
in repository bitbake.

commit 91c3b34625fac2a0f093a4b46a46e89f813e7972
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Oct 27 01:50:18 2016 -0700

    lib/bb/cooker.py: fix for BBFILE_PATTERN = ""
    
    There would be error when BBFILE_PATTERN = None:
      BBFILE_PATTERN_foo not defined
    
    This is the correct behaviour, but when the layer sets BBFILE_PATTERN = "",
    it would match all the remaining recipes, and cause "No bb files matched BBFILE_PATTERN"
    warnings for all the layers which behind it.
    
    When a layer sets BBFILE_PATTERN = "" (for example, a layer only
    provides git repos and source tarballs), now it means has no recipes.
    This is different from BBFILE_PATTERN_IGNORE_EMPTY, the later one means
    that it *may* not have any recipes.
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cooker.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 42831e2..c08af45 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1240,6 +1240,10 @@ class BBCooker:
                     parselog.error("BBFILE_PATTERN_%s not defined" % c)
                     errors = True
                     continue
+                elif regex == "":
+                    parselog.debug(1, "BBFILE_PATTERN_%s is empty" % c)
+                    errors = False
+                    continue
                 try:
                     cre = re.compile(regex)
                 except re.error:

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


More information about the Openembedded-commits mailing list