Revision
140049
Author
ionic@macports.org
Date
2015-09-07 19:15:29 -0700 (Mon, 07 Sep 2015)

Log Message

_resources/port1.0/group/archcheck-1.0.tcl: fix string comparison. (eq instead of ==, probably doesn't matter in that case, though...)

Modified Paths

Diff

Modified: trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl (140048 => 140049)


--- trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl	2015-09-08 02:04:10 UTC (rev 140048)
+++ trunk/dports/_resources/port1.0/group/archcheck-1.0.tcl	2015-09-08 02:15:29 UTC (rev 140049)
@@ -45,7 +45,7 @@
 options archcheck.files
 default archcheck.files {}
 
-if {"darwin" == ${os.platform}} {
+if {"darwin" eq ${os.platform}} {
 pre-configure {
     if {[variant_exists universal] && [variant_isset universal]} {
         set requested_archs ${configure.universal_archs}