diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 12:33:29 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:31 +0100 |
commit | 87f62d7c8d386df0d613da4f48c0b210902ab621 (patch) | |
tree | bfa71505321276841f07bf875e479b272547b9f3 /bitbake/lib/bb/fetch | |
parent | ac170b0c346184bd8ba2fe1d56ccb9ea003b1a40 (diff) | |
download | openembedded-core-87f62d7c8d386df0d613da4f48c0b210902ab621.tar.gz openembedded-core-87f62d7c8d386df0d613da4f48c0b210902ab621.tar.bz2 openembedded-core-87f62d7c8d386df0d613da4f48c0b210902ab621.tar.xz openembedded-core-87f62d7c8d386df0d613da4f48c0b210902ab621.zip |
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/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/perforce.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch/perforce.py b/bitbake/lib/bb/fetch/perforce.py index e2c342108..8bc3205c2 100644 --- a/bitbake/lib/bb/fetch/perforce.py +++ b/bitbake/lib/bb/fetch/perforce.py @@ -160,7 +160,7 @@ class Perforce(Fetch): tmppipe = os.popen(data.getVar('MKTEMPDIRCMD', localdata, 1) or "false") tmpfile = tmppipe.readline().strip() if not tmpfile: - bb.error("Fetch: unable to create temporary directory.. make sure 'mktemp' is in the PATH.") + bb.msg.error(bb.msg.domain.Fetcher, "Fetch: unable to create temporary directory.. make sure 'mktemp' is in the PATH.") raise FetchError(module) if "label" in parm: @@ -175,7 +175,7 @@ class Perforce(Fetch): p4file = os.popen("%s%s files %s" % (p4cmd, p4opt, depot)) if not p4file: - bb.error("Fetch: unable to get the P4 files from %s" % (depot)) + bb.msg.error(bb.msg.domain.Fetcher, "Fetch: unable to get the P4 files from %s" % (depot)) raise FetchError(module) count = 0 @@ -193,7 +193,7 @@ class Perforce(Fetch): count = count + 1 if count == 0: - bb.error("Fetch: No files gathered from the P4 fetch") + bb.msg.error(bb.msg.domain.Fetcher, "Fetch: No files gathered from the P4 fetch") raise FetchError(module) myret = os.system("tar -czf %s %s" % (ud.localpath, module)) |