diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-03-01 09:20:29 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-22 15:03:46 +0000 |
commit | 04263dc426f2444d822915257b28393eb8ff6198 (patch) | |
tree | e0d884cdea9599364a07caec84c83845910752c0 /bitbake/lib/bb/cooker.py | |
parent | 2f9e15afbe988a76b9581093b8bd469e275a0b9e (diff) | |
download | poky-04263dc426f2444d822915257b28393eb8ff6198.tar.gz |
cooker: bail out early if no files to build
This prevents a misleading backtrace:
ERROR: no files to build.
Command execution failed: Traceback (most recent call last):
File ".../bitbake/build/lib/bb/command.py", line 83, in runAsyncCommand
self.cooker.updateCache()
File ".../bitbake/build/lib/bb/cooker.py", line 779, in updateCache
if not self.parser.parse_next():
File ".../bitbake/build/lib/bb/cooker.py", line 969, in parse_next
cooker.bb_cache.sync()
UnboundLocalError: local variable 'cooker' referenced before assignment
(Bitbake rev: 060ef3d957615b7eb1209dc0d01ebeb53f8c4edc)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Chris Larson <clarson@kergoth.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 938bdeaaea..bf174859cb 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -832,7 +832,8 @@ class BBCooker: | |||
832 | files = self.get_bbfiles() | 832 | files = self.get_bbfiles() |
833 | 833 | ||
834 | if not len(files): | 834 | if not len(files): |
835 | bb.msg.error(bb.msg.domain.Collection, "no files to build.") | 835 | bb.msg.error(bb.msg.domain.Collection, "no recipe files to build, check your BBPATH and BBFILES?") |
836 | bb.event.fire(CookerExit(), self.configuration.event_data) | ||
836 | 837 | ||
837 | newfiles = [] | 838 | newfiles = [] |
838 | for f in files: | 839 | for f in files: |