Changeset 211588 in webkit


Ignore:
Timestamp:
Feb 2, 2017 1:05:17 PM (7 years ago)
Author:
mitz@apple.com
Message:

The Make Frameworks Symbolic Link build phase can end up creating a symlink inside the Frameworks subdirectory
https://bugs.webkit.org/show_bug.cgi?id=167745

Reviewed by Tim Horton.

  • WebKit2.xcodeproj/project.pbxproj: Pass the -h option to ln(1) so that it will replace, rather than follow, an existing symlink.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r211571 r211588  
     12017-02-02  Dan Bernstein  <mitz@apple.com>
     2
     3        The Make Frameworks Symbolic Link build phase can end up creating a symlink inside the Frameworks subdirectory
     4        https://bugs.webkit.org/show_bug.cgi?id=167745
     5
     6        Reviewed by Tim Horton.
     7
     8        * WebKit2.xcodeproj/project.pbxproj: Pass the -h option to ln(1) so that it will replace,
     9          rather than follow, an existing symlink.
     10
    1112017-02-02  Andreas Kling  <akling@apple.com>
    212
  • trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj

    r211441 r211588  
    90749074                        runOnlyForDeploymentPostprocessing = 0;
    90759075                        shellPath = /bin/sh;
    9076                         shellScript = "if [[ ${PLATFORM_NAME} != \"macosx\" ]]; then\nexit 0\nfi\n\nln -sf Versions/Current/Frameworks \"$TARGET_BUILD_DIR/WebKit.framework/Frameworks\"\n";
     9076                        shellScript = "if [[ ${PLATFORM_NAME} != \"macosx\" ]]; then\nexit 0\nfi\n\nln -shf Versions/Current/Frameworks \"$TARGET_BUILD_DIR/WebKit.framework/Frameworks\"\n";
    90779077                };
    90789078                1A1D2115191D96380001619F /* Postprocess Framework Headers */ = {
Note: See TracChangeset for help on using the changeset viewer.