Revision: 141206 https://trac.macports.org/changeset/141206 Author: jeremyhu@macports.org Date: 2015-10-12 13:17:37 -0700 (Mon, 12 Oct 2015) Log Message: ----------- *-gcc42: Re-allow gcc-4.2 and llvm-gcc-4.2 on El Cap for now Modified Paths: -------------- trunk/dports/lang/apple-gcc42/Portfile trunk/dports/lang/llvm-gcc42/Portfile Modified: trunk/dports/lang/apple-gcc42/Portfile =================================================================== --- trunk/dports/lang/apple-gcc42/Portfile 2015-10-12 20:16:04 UTC (rev 141205) +++ trunk/dports/lang/apple-gcc42/Portfile 2015-10-12 20:17:37 UTC (rev 141206) @@ -75,12 +75,12 @@ use_configure no variant universal {} -if {${os.platform} eq "darwin" && ${os.major} >= 15} { +if {${os.platform} eq "darwin" && ${os.major} > 15} { depends_lib depends_run archive_sites pre-fetch { - ui_error "${name} is not supported on El Capitan or later." + ui_error "${name} is not supported on OS X versions newer than El Capitan." return -code error {unsupported platform} } } Modified: trunk/dports/lang/llvm-gcc42/Portfile =================================================================== --- trunk/dports/lang/llvm-gcc42/Portfile 2015-10-12 20:16:04 UTC (rev 141205) +++ trunk/dports/lang/llvm-gcc42/Portfile 2015-10-12 20:17:37 UTC (rev 141206) @@ -37,12 +37,12 @@ supported_archs i386 x86_64 -if {${os.platform} eq "darwin" && ${os.major} >= 15} { +if {${os.platform} eq "darwin" && ${os.major} > 15} { depends_lib depends_run archive_sites pre-fetch { - ui_error "${name} is not supported on El Capitan or later." + ui_error "${name} is not supported on OS X versions newer than El Capitan." return -code error {unsupported platform} } }
participants (1)
-
jeremyhu@macports.org