Author: infinoid
Date: Thu Jul 24 06:01:58 2008
New Revision: 29720
Modified:
trunk/config/init/hints/darwin.pm
Log:
[darwin] Apply patch from RT #57224. kasei++, rurban++.
* Reverse the order of @arches in the darwin hints file. Since /ppc/ will
match both "ppc" and "ppc64", it is important to do search/replaces for
"ppc64" before doing them for "ppc".
Modified: trunk/config/init/hints/darwin.pm
==============================================================================
--- trunk/config/init/hints/darwin.pm (original)
+++ trunk/config/init/hints/darwin.pm Thu Jul 24 06:01:58 2008
@@ -20,7 +20,7 @@
# requested by command-line options and force a single, native
# architecture to being the default build.
my @flags = qw(ccflags linkflags ldflags ld_share_flags ld_load_flags);
- my @arches = qw(i386 ppc ppc64 x86_64);
+ my @arches = qw(i386 ppc64 ppc x86_64);
print "\nChecking for -arch flags not explicitly added:\n" if $verbose;
for my $flag (@flags) {