Revision
69328
Author
michaelld@macports.org
Date
2010-06-30 09:50:04 -0700 (Wed, 30 Jun 2010)

Log Message

Fix post-destroot file and group check so that both need to be not ""
in order for the select file to be installed.

Modified Paths

Diff

Modified: trunk/dports/_resources/port1.0/group/select-1.0.tcl (69327 => 69328)


--- trunk/dports/_resources/port1.0/group/select-1.0.tcl	2010-06-30 16:48:56 UTC (rev 69327)
+++ trunk/dports/_resources/port1.0/group/select-1.0.tcl	2010-06-30 16:50:04 UTC (rev 69328)
@@ -52,7 +52,7 @@
 }
 
 post-destroot {
-    if {${select.file} != "" || ${select.group} != ""} {
+    if {${select.file} != "" && ${select.group} != ""} {
         select::install ${select.group} ${select.file}
     } else {
         ui_debug "PortGroup select: select.group or select.file not set"