[oe-commits] [bitbake] 01/01: cooker: Fix bbfile_config_priorities when BBFILE_PATTERN is empty

git at git.openembedded.org git at git.openembedded.org
Thu Mar 21 23:37:20 UTC 2019


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

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

commit 0ff5cdb0cca9266ca29127639494bcfd95e36831
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Mar 21 15:20:21 2019 +0800

    cooker: Fix bbfile_config_priorities when BBFILE_PATTERN is empty
    
    The layer was not in bbfile_config_priorities when BBFILE_PATTERN is empty,
    this caused "bitbake-layers show-layers" can't show these layers, this was
    incorrect since these layer did exist. Add these layer to
    bbfile_config_priorities can fix the problem.
    
    Fixed:
    Add BBFILE_PATTERN_core = "" in oe-core/meta/conf/layer.conf
    $ bitbake show-layers | grep oe-core
    
    There was nothing, now the layer is shown
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cooker.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/cooker.py b/lib/bb/cooker.py
index 1982e88..9ccaa79 100644
--- a/lib/bb/cooker.py
+++ b/lib/bb/cooker.py
@@ -1216,8 +1216,8 @@ class BBCooker:
                     continue
                 elif regex == "":
                     parselog.debug(1, "BBFILE_PATTERN_%s is empty" % c)
+                    cre = re.compile('^NULL$')
                     errors = False
-                    continue
                 else:
                     try:
                         cre = re.compile(regex)

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


More information about the Openembedded-commits mailing list