Changeset 141683 in webkit


Ignore:
Timestamp:
Feb 1, 2013 10:26:20 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Building fails in an armv5tel board
https://bugs.webkit.org/show_bug.cgi?id=108083

Patch by Adrian Perez de Castro <Adrian Perez de Castro> on 2013-02-01
Reviewed by Martin Robinson.

In some systems in which $architecture is filled-in from "uname -m"
the value may not start with "arm-", but with "armvN", where "N" is
an architecture version number. The regexp in isARM() is modified
so it covers these kind of cases.

  • Scripts/webkitdirs.pm:

(isARM):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r141672 r141683  
     12013-02-01  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK] Building fails in an armv5tel board
     4        https://bugs.webkit.org/show_bug.cgi?id=108083
     5
     6        Reviewed by Martin Robinson.
     7
     8        In some systems in which $architecture is filled-in from "uname -m"
     9        the value may not start with "arm-", but with "armvN", where "N" is
     10        an architecture version number. The regexp in isARM() is modified
     11        so it covers these kind of cases.
     12
     13        * Scripts/webkitdirs.pm:
     14        (isARM):
     15
    1162013-02-01  Gregg Tavares  <gman@google.com>
    217
  • trunk/Tools/Scripts/webkitdirs.pm

    r141534 r141683  
    13581358sub isARM()
    13591359{
    1360     return $Config{archname} =~ /^arm-/;
     1360    return $Config{archname} =~ /^arm[v\-]/;
    13611361}
    13621362
Note: See TracChangeset for help on using the changeset viewer.