summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-07-18 16:23:35 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-26 20:15:47 +0100
commit9e6f220a5420a8ec428c853d53de30c29dd88fe5 (patch)
tree1ace5f2df565ae12cabe621d3957b56a117fbfc9 /bitbake
parent40f0e6dbd4ff449e517c5eb6161cf734d7b64c64 (diff)
downloadpoky-9e6f220a5420a8ec428c853d53de30c29dd88fe5.tar.gz
ui/hob: change wording in build complete dialog
The 'View Log' button is potentially confusing to existing users of the system who may be expecting to be shown the on disk logs of the build. Instead use 'View Messages'. Addresses [YOCTO #1222] (Bitbake rev: 105bfe3562235fb586be4b4179bb34b2e94ef234) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/hob.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/hob.py b/bitbake/lib/bb/ui/hob.py
index e0380dd11e..df0ebe2328 100644
--- a/bitbake/lib/bb/ui/hob.py
+++ b/bitbake/lib/bb/ui/hob.py
@@ -411,13 +411,13 @@ class MainWindow (gtk.Window):
411 for f in self.files_to_clean: 411 for f in self.files_to_clean:
412 os.remove(f) 412 os.remove(f)
413 413
414 lbl = "<b>Build completed</b>\n\nClick 'Edit Image' to start another build or 'View Log' to view the build log." 414 lbl = "<b>Build completed</b>\n\nClick 'Edit Image' to start another build or 'View Messages' to view the messages output during the build."
415 if self.handler.building == "image" and self.build_succeeded: 415 if self.handler.building == "image" and self.build_succeeded:
416 deploy = self.handler.get_image_deploy_dir() 416 deploy = self.handler.get_image_deploy_dir()
417 lbl = lbl + "\n<a href=\"file://%s\" title=\"%s\">Browse folder of built images</a>." % (deploy, deploy) 417 lbl = lbl + "\n<a href=\"file://%s\" title=\"%s\">Browse folder of built images</a>." % (deploy, deploy)
418 418
419 dialog = CrumbsDialog(self, lbl) 419 dialog = CrumbsDialog(self, lbl)
420 dialog.add_button("View Log", gtk.RESPONSE_CANCEL) 420 dialog.add_button("View Messages", gtk.RESPONSE_CANCEL)
421 dialog.add_button("Edit Image", gtk.RESPONSE_OK) 421 dialog.add_button("Edit Image", gtk.RESPONSE_OK)
422 response = dialog.run() 422 response = dialog.run()
423 dialog.destroy() 423 dialog.destroy()