[62568] trunk/base/src/port/port.tcl

raimue at macports.org raimue at macports.org
Mon Jan 11 03:26:06 PST 2010


Revision: 62568
          http://trac.macports.org/changeset/62568
Author:   raimue at macports.org
Date:     2010-01-11 03:26:03 -0800 (Mon, 11 Jan 2010)
Log Message:
-----------
port/port.tcl:
The installed command should not output messages in quiet mode.

Modified Paths:
--------------
    trunk/base/src/port/port.tcl

Modified: trunk/base/src/port/port.tcl
===================================================================
--- trunk/base/src/port/port.tcl	2010-01-11 09:54:53 UTC (rev 62567)
+++ trunk/base/src/port/port.tcl	2010-01-11 11:26:03 UTC (rev 62568)
@@ -2274,11 +2274,15 @@
             }
         }
     } elseif { $restrictedList } {
-        puts "None of the specified ports are installed."
+        if {![macports::ui_isset ports_quiet]} {
+            puts "None of the specified ports are installed."
+        }
     } else {
-        puts "No ports are installed."
+        if {![macports::ui_isset ports_quiet]} {
+            puts "No ports are installed."
+        }
     }
-    
+
     return $status
 }
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100111/8f91a7ff/attachment-0001.html>


More information about the macports-changes mailing list