Revision
74437
Author
jmr@macports.org
Date
2010-12-17 02:24:57 -0800 (Fri, 17 Dec 2010)

Log Message

py26-numpy, py27-numpy: remove check for existence of universal variant; it's defined both unconditionally and after the check

Modified Paths

Diff

Modified: trunk/dports/python/py26-numpy/Portfile (74436 => 74437)


--- trunk/dports/python/py26-numpy/Portfile	2010-12-17 10:21:22 UTC (rev 74436)
+++ trunk/dports/python/py26-numpy/Portfile	2010-12-17 10:24:57 UTC (rev 74437)
@@ -77,7 +77,7 @@
         # create binaries only for the native OS architecture, at
         # either 32 or 64 bits.  Restrict the supported archs
         # accordingly.
-        if {[variant_exists universal] && [variant_isset universal]} {
+        if {[variant_isset universal]} {
             if { ${os.arch}=="i386" } {
                 set universal_archs_supported { i386 x86_64 }
             } else {

Modified: trunk/dports/python/py27-numpy/Portfile (74436 => 74437)


--- trunk/dports/python/py27-numpy/Portfile	2010-12-17 10:21:22 UTC (rev 74436)
+++ trunk/dports/python/py27-numpy/Portfile	2010-12-17 10:24:57 UTC (rev 74437)
@@ -76,7 +76,7 @@
         # create binaries only for the native OS architecture, at
         # either 32 or 64 bits.  Restrict the supported archs
         # accordingly.
-        if {[variant_exists universal] && [variant_isset universal]} {
+        if {[variant_isset universal]} {
             if { ${os.arch}=="i386" } {
                 set universal_archs_supported { i386 x86_64 }
             } else {