diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2008-11-06 00:12:31 +0000 | 
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2008-11-06 00:12:31 +0000 | 
| commit | b6b37f065c5715c04442184ca20c86258f1c1714 (patch) | |
| tree | 400023feba066116e83b9bb209c3814dfa80a0c1 /bitbake/lib | |
| parent | 4ba6a52d7ec989d4960ccc11402101257ee96c67 (diff) | |
| download | openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.tar.gz openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.tar.bz2 openembedded-core-b6b37f065c5715c04442184ca20c86258f1c1714.zip | |
bitbake: Improve error message for missing class files
Diffstat (limited to 'bitbake/lib')
| -rw-r--r-- | bitbake/lib/bb/cooker.py | 4 | ||||
| -rw-r--r-- | bitbake/lib/bb/parse/parse_py/BBHandler.py | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index c5d640da80..6a6d254d7a 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -404,8 +404,8 @@ class BBCooker:              bb.event.fire(bb.event.ConfigParsed(self.configuration.data)) -        except IOError: -            bb.msg.fatal(bb.msg.domain.Parsing, "Unable to open %s" % afile ) +        except IOError, e: +            bb.msg.fatal(bb.msg.domain.Parsing, "IO Error: %s" % str(e) )          except bb.parse.ParseError, details:              bb.msg.fatal(bb.msg.domain.Parsing, "Unable to parse %s (%s)" % (afile, details) ) diff --git a/bitbake/lib/bb/parse/parse_py/BBHandler.py b/bitbake/lib/bb/parse/parse_py/BBHandler.py index cc8bc92e1d..583a71c0ba 100644 --- a/bitbake/lib/bb/parse/parse_py/BBHandler.py +++ b/bitbake/lib/bb/parse/parse_py/BBHandler.py @@ -116,7 +116,7 @@ def handle(fn, d, include = 0):                  f = open(j, 'r')                  break          if f is None: -            raise IOError("file not found") +            raise IOError("file %s not found" % fn)      else:          f = open(fn,'r')          abs_fn = fn | 
