Title: [211588] trunk/Source/WebKit2
Revision
211588
Author
m...@apple.com
Date
2017-02-02 13:05:17 -0800 (Thu, 02 Feb 2017)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (211587 => 211588)


--- trunk/Source/WebKit2/ChangeLog	2017-02-02 21:00:43 UTC (rev 211587)
+++ trunk/Source/WebKit2/ChangeLog	2017-02-02 21:05:17 UTC (rev 211588)
@@ -1,3 +1,13 @@
+2017-02-02  Dan Bernstein  <m...@apple.com>
+
+        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.
+
 2017-02-02  Andreas Kling  <akl...@apple.com>
 
         [Mac] In-process memory pressure monitor for WebContent processes.

Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (211587 => 211588)


--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2017-02-02 21:00:43 UTC (rev 211587)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2017-02-02 21:05:17 UTC (rev 211588)
@@ -9073,7 +9073,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "if [[ ${PLATFORM_NAME} != \"macosx\" ]]; then\nexit 0\nfi\n\nln -sf Versions/Current/Frameworks \"$TARGET_BUILD_DIR/WebKit.framework/Frameworks\"\n";
+			shellScript = "if [[ ${PLATFORM_NAME} != \"macosx\" ]]; then\nexit 0\nfi\n\nln -shf Versions/Current/Frameworks \"$TARGET_BUILD_DIR/WebKit.framework/Frameworks\"\n";
 		};
 		1A1D2115191D96380001619F /* Postprocess Framework Headers */ = {
 			isa = PBXShellScriptBuildPhase;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to