Changeset 41844 in webkit


Ignore:
Timestamp:
Mar 19, 2009 2:08:57 PM (15 years ago)
Author:
kov@webkit.org
Message:

2009-03-19 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Mark Rowe.

Make determinePassedArchitecture always consume the --32-bit
option, also in non-AppleMacWebkit platforms. Solution pointed out
by Mark Rowe.

  • Scripts/webkitdirs.pm:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r41827 r41844  
     12009-03-19  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        Reviewed by Mark Rowe.
     4
     5        Make determinePassedArchitecture always consume the --32-bit
     6        option, also in non-AppleMacWebkit platforms. Solution pointed out
     7        by Mark Rowe.
     8
     9        * Scripts/webkitdirs.pm:
     10
    1112009-03-19  Mark Rowe  <mrowe@apple.com>
    212
  • trunk/WebKitTools/Scripts/webkitdirs.pm

    r41790 r41844  
    378378    $searchedForPassedArchitecture = 1;
    379379
    380     return unless isAppleMacWebKit();
    381 
    382380    for my $i (0 .. $#ARGV) {
    383381        my $opt = $ARGV[$i];
    384382        if ($opt =~ /^--32-bit$/i) {
    385383            splice(@ARGV, $i, 1);
    386             $passedArchitecture = `arch`;
    387             chomp $passedArchitecture;
     384            if (isAppleMacWebKit()) {
     385                $passedArchitecture = `arch`;
     386                chomp $passedArchitecture;
     387            }
    388388            return;
    389389        }
Note: See TracChangeset for help on using the changeset viewer.