aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-11-06 00:12:31 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-11-06 00:12:31 +0000
commitb6b37f065c5715c04442184ca20c86258f1c1714 (patch)
tree400023feba066116e83b9bb209c3814dfa80a0c1 /bitbake
parent4ba6a52d7ec989d4960ccc11402101257ee96c67 (diff)
downloadopenembedded-core-contrib-b6b37f065c5715c04442184ca20c86258f1c1714.tar.gz
bitbake: Improve error message for missing class files
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/cooker.py4
-rw-r--r--bitbake/lib/bb/parse/parse_py/BBHandler.py2
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