Changeset 229353 in webkit


Ignore:
Timestamp:
Mar 6, 2018 9:17:30 PM (6 years ago)
Author:
BJ Burg
Message:

[Cocoa] Stop copying ForwardingHeaders directory that no longer exists
https://bugs.webkit.org/show_bug.cgi?id=183396

Reviewed by Dan Bernstein.

  • WebCore.xcodeproj/project.pbxproj:

Rename the phase to "Copy ICU Headers". ForwardingHeaders are no longer a thing.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r229349 r229353  
     12018-03-06  Brian Burg  <bburg@apple.com>
     2
     3        [Cocoa] Stop copying ForwardingHeaders directory that no longer exists
     4        https://bugs.webkit.org/show_bug.cgi?id=183396
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * WebCore.xcodeproj/project.pbxproj:
     9        Rename the phase to "Copy ICU Headers". ForwardingHeaders are no longer a thing.
     10
    1112018-03-06  Youenn Fablet  <youenn@apple.com>
    212
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r229340 r229353  
    3066330663                                93F198A608245E59001E9ABC /* Headers */,
    3066430664                                1C11CCB40AA6093700DADB20 /* Copy Generated Headers */,
    30665                                 5D87BC0711E43BDE00702B6F /* Copy Forwarding and ICU Headers */,
     30665                                5D87BC0711E43BDE00702B6F /* Copy ICU Headers */,
    3066630666                                3717D7E717ECC573003C276D /* Copy Scripts */,
    3066730667                                93F199FD08245E59001E9ABC /* Resources */,
     
    3087530875                        shellScript = "# Touch Info.plist to let Xcode know it needs to copy it into the built product\nif [[ \"${CONFIGURATION}\" != \"Production\" ]]; then\n    touch \"$SRCROOT/Info.plist\";\nfi;\n";
    3087630876                };
    30877                 5D87BC0711E43BDE00702B6F /* Copy Forwarding and ICU Headers */ = {
     30877                5D87BC0711E43BDE00702B6F /* Copy ICU Headers */ = {
    3087830878                        isa = PBXShellScriptBuildPhase;
    3087930879                        buildActionMask = 2147483647;
     
    3088230882                        inputPaths = (
    3088330883                        );
    30884                         name = "Copy Forwarding and ICU Headers";
     30884                        name = "Copy ICU Headers";
    3088530885                        outputPaths = (
    3088630886                        );
    3088730887                        runOnlyForDeploymentPostprocessing = 0;
    3088830888                        shellPath = /bin/sh;
    30889                         shellScript = "rsync -aq --exclude \".svn\" --exclude \".DS_Store\" \"$SRCROOT/ForwardingHeaders\" \"$BUILT_PRODUCTS_DIR/$PRIVATE_HEADERS_FOLDER_PATH\"\nrsync -aq --exclude \".svn\" --exclude \".DS_Store\" \"$SRCROOT/icu\" \"$BUILT_PRODUCTS_DIR/$PRIVATE_HEADERS_FOLDER_PATH\"\n";
     30889                        shellScript = "rsync -aq --exclude \".svn\" --exclude \".DS_Store\" \"$SRCROOT/icu\" \"$BUILT_PRODUCTS_DIR/$PRIVATE_HEADERS_FOLDER_PATH\"\n";
    3089030890                };
    3089130891                5DF50887116F3077005202AB /* Check For Inappropriate Files In Framework */ = {
Note: See TracChangeset for help on using the changeset viewer.