diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2018-02-01 23:15:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-14 15:26:03 +0000 |
commit | fe70fd1a03dcbf516ee10866b8a68daf942c0a07 (patch) | |
tree | 7688e12638730efb04a39a611fa73de956cc0b25 /bitbake/lib/bb/cooker.py | |
parent | 9c44aee83d5a3e74e33e492fb0892c419756fb00 (diff) | |
download | openembedded-core-contrib-fe70fd1a03dcbf516ee10866b8a68daf942c0a07.tar.gz |
bitbake: bitbake: cooker: skip when BBFILE_PATTERN is empty
There is nothing to do when BBFILE_PATTERN is empty.
(Bitbake rev: b7da31641c24c53d47ea45a7119d1bd353011b39)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index cd365f78031..f0dab979745 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1170,6 +1170,7 @@ class BBCooker: elif regex == "": parselog.debug(1, "BBFILE_PATTERN_%s is empty" % c) errors = False + continue else: try: cre = re.compile(regex) |