On Thursday 24 July 2008 06:01:59 [EMAIL PROTECTED] wrote: > 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);
This deserves a comment at least (or better, perhaps, a reverse sort later before the regexp). -- c