[103448] trunk/base/src/port1.0/portconfigure.tcl
Revision: 103448 https://trac.macports.org/changeset/103448 Author: larryv@macports.org Date: 2013-02-25 23:21:27 -0800 (Mon, 25 Feb 2013) Log Message: ----------- portconfigure.tcl: Fix typo in arch_flag_supported. Modified Paths: -------------- trunk/base/src/port1.0/portconfigure.tcl Modified: trunk/base/src/port1.0/portconfigure.tcl =================================================================== --- trunk/base/src/port1.0/portconfigure.tcl 2013-02-26 05:37:14 UTC (rev 103447) +++ trunk/base/src/port1.0/portconfigure.tcl 2013-02-26 07:21:27 UTC (rev 103448) @@ -358,8 +358,8 @@ # internal proc to determine if the compiler supports -arch proc portconfigure::arch_flag_supported {compiler} { - return [expr {[string first "macports-gcc-" $compiler] != 0 && - [string first "macports-dragonegg-" $compiler] != 0}] + return [expr {[string first "macports-gcc" $compiler] != 0 && + [string first "macports-dragonegg" $compiler] != 0}] } # maps compiler names to the port that provides them
participants (1)
-
larryv@macports.org