Changeset 161845 in webkit


Ignore:
Timestamp:
Jan 12, 2014, 5:38:07 PM (12 years ago)
Author:
dbates@webkit.org
Message:

[iOS] Fix the build

For now, ensure we build WebKit System Interface before we build WebKit.
We'll remove this constraint and the constraint to build WebKit Additions
in a subsequent commit.

  • Scripts/build-webkit:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r161816 r161845  
     12014-01-12  Daniel Bates  <dabates@apple.com>
     2
     3        [iOS] Fix the build
     4
     5        For now, ensure we build WebKit System Interface before we build WebKit.
     6        We'll remove this constraint and the constraint to build WebKit Additions
     7        in a subsequent commit.
     8
     9        * Scripts/build-webkit:
     10
    1112014-01-12  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/Tools/Scripts/build-webkit

    r161685 r161845  
    239239
    240240    if (isIOSWebKit()) {
     241        # FIXME: Remove the inclusion of both WebKit System Interface and WebKit Additions projects
     242        # once the iOS build is stable.
     243
    241244        # WebKitSystemInterface should always be built just before WebKit.
    242245        my $webKitIndex = first { $projects[$_] eq "Source/WebKit" } 0..$#projects;
    243         splice(@projects, $webKitIndex, 0, "WebKitSystemInterface");
     246        splice(@projects, $webKitIndex, 0, "../Internal/WebKitSystemInterface");
    244247
    245248        # WebKitAdditions must come before WebCore
Note: See TracChangeset for help on using the changeset viewer.