summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 12:33:29 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:31 +0100
commit87f62d7c8d386df0d613da4f48c0b210902ab621 (patch)
treebfa71505321276841f07bf875e479b272547b9f3 /bitbake/lib/bb/parse
parentac170b0c346184bd8ba2fe1d56ccb9ea003b1a40 (diff)
downloadpoky-87f62d7c8d386df0d613da4f48c0b210902ab621.tar.gz
Ensure we always utilize the correct messaging domains
(Bitbake rev: 92a2e2e90981c0615171abe03645a772d84f6986) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/parse')
-rw-r--r--bitbake/lib/bb/parse/parse_py/ConfHandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/parse/parse_py/ConfHandler.py b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
index f4f85de245..6baf94554c 100644
--- a/bitbake/lib/bb/parse/parse_py/ConfHandler.py
+++ b/bitbake/lib/bb/parse/parse_py/ConfHandler.py
@@ -39,7 +39,7 @@ def init(data):
39 topdir = os.getcwd() 39 topdir = os.getcwd()
40 bb.data.setVar('TOPDIR', topdir, data) 40 bb.data.setVar('TOPDIR', topdir, data)
41 if not bb.data.getVar('BBPATH', data): 41 if not bb.data.getVar('BBPATH', data):
42 bb.fatal("The BBPATH environment variable must be set") 42 bb.msg.fatal(bb.msg.domain.Parsing, "The BBPATH environment variable must be set")
43 43
44 44
45def supports(fn, d): 45def supports(fn, d):