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>
This commit is contained in:
Chris Larson
2010-04-09 12:33:29 -07:00
committed by Richard Purdie
parent ac170b0c34
commit 87f62d7c8d
6 changed files with 14 additions and 14 deletions

View File

@@ -536,7 +536,7 @@ def filter_environment(good_vars):
del os.environ[key]
if len(removed_vars):
bb.debug(1, "Removed the following variables from the environment:", ",".join(removed_vars))
bb.msg.debug(1, bb.msg.domain.Util, "Removed the following variables from the environment:", ",".join(removed_vars))
return removed_vars
@@ -602,10 +602,10 @@ def mkdirhier(dir):
directory already exists like os.makedirs
"""
bb.debug(3, "mkdirhier(%s)" % dir)
bb.msg.debug(3, bb.msg.domain.Util, "mkdirhier(%s)" % dir)
try:
os.makedirs(dir)
bb.debug(2, "created " + dir)
bb.msg.debug(2, bb.msg.domain.Util, "created " + dir)
except OSError, e:
if e.errno != 17: raise e