[123709] trunk/base/src/port/port.tcl
cal at macports.org
cal at macports.org
Wed Aug 13 03:11:37 PDT 2014
Revision: 123709
https://trac.macports.org/changeset/123709
Author: cal at macports.org
Date: 2014-08-13 03:11:37 -0700 (Wed, 13 Aug 2014)
Log Message:
-----------
base: print notes in a defined order at the end of an installation, closes #44629
Modified Paths:
--------------
trunk/base/src/port/port.tcl
Modified: trunk/base/src/port/port.tcl
===================================================================
--- trunk/base/src/port/port.tcl 2014-08-13 09:57:42 UTC (rev 123708)
+++ trunk/base/src/port/port.tcl 2014-08-13 10:11:37 UTC (rev 123709)
@@ -5227,7 +5227,8 @@
# Display notes at the end of the activation phase.
if {[array size notificationsToPrint] > 0} {
ui_notice "---> Some of the ports you installed have notes:"
- foreach {name notes} [array get notificationsToPrint] {
+ foreach name [lsort [array names notificationsToPrint]] {
+ set notes $notificationsToPrint($name)
ui_notice " $name has the following notes:"
# If env(COLUMNS) exists, limit each line's width to this width.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140813/9056be12/attachment.html>
More information about the macports-changes
mailing list