aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-04-14 18:20:57 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-04-14 18:20:57 +0000
commitb303cfeeabd675ddf89b05cfbd5b3ec6dca18109 (patch)
tree3ec1209da10b895d913d85d790a26a17b4cad1b4 /bin
parent402f55a058425223160ef42d6ebb311a85a2b968 (diff)
downloadbitbake-b303cfeeabd675ddf89b05cfbd5b3ec6dca18109.tar.gz
bin/bitbake:
Update output to more accurately describe what bitbake's doing when handling already staged packages.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/bitbake b/bin/bitbake
index ac5a8b7e7..81bbb40ff 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -470,11 +470,11 @@ class BBCooker:
oldver = "%s-%s" % (pv, pr)
newver = '-'.join(newvers)
if (newver != oldver):
- extra_chat = "; upgrading from %s to %s" % (oldver, newver)
+ extra_chat = "%s (%s) already staged but upgrading to %s to satisfy %s" % (pn, oldver, newver, item)
else:
- extra_chat = ""
+ extra_chat = "Selecting already-staged %s (%s) to satisfy %s" % (pn, oldver, item)
if self.configuration.verbose:
- bb.note("selecting already-staged %s to satisfy %s%s" % (pn, item, extra_chat))
+ bb.note("%s" % extra_chat)
eligible.remove(fn)
eligible = [fn] + eligible
discriminated = True