Title: [184773] trunk/Source/WebKit2
Revision
184773
Author
m...@apple.com
Date
2015-05-22 10:09:12 -0700 (Fri, 22 May 2015)

Log Message

Fixed the fix for <rdar://problem/20830673> Symlink the WebKit dylib instead of just the framework directory
https://bugs.webkit.org/show_bug.cgi?id=145287

Reviewed by Anders Carlsson.

* WebKit2.xcodeproj/project.pbxproj: Give the symlink the correct destination.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (184772 => 184773)


--- trunk/Source/WebKit2/ChangeLog	2015-05-22 17:04:42 UTC (rev 184772)
+++ trunk/Source/WebKit2/ChangeLog	2015-05-22 17:09:12 UTC (rev 184773)
@@ -1,3 +1,12 @@
+2015-05-22  Dan Bernstein  <m...@apple.com>
+
+        Fixed the fix for <rdar://problem/20830673> Symlink the WebKit dylib instead of just the framework directory
+        https://bugs.webkit.org/show_bug.cgi?id=145287
+
+        Reviewed by Anders Carlsson.
+
+        * WebKit2.xcodeproj/project.pbxproj: Give the symlink the correct destination.
+
 2015-05-21  Brady Eidson  <beid...@apple.com>
 
         Add an "initiated by user gesture" flag to ResourceRequest.

Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (184772 => 184773)


--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2015-05-22 17:04:42 UTC (rev 184772)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2015-05-22 17:09:12 UTC (rev 184773)
@@ -9066,7 +9066,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 1;
 			shellPath = /bin/sh;
-			shellScript = "if [[ ${PLATFORM_NAME} != \"iphoneos\" ]]; then\n    exit 0;\nfi\n\nif [[ ! -d \"${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework\" ]]; then\n    mkdir -p \"${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework\"\nfi\n\n# If the symlink already exists, remove it and create the new one in its place.\nln -s -h -f ../Frameworks/WebKit.framework/WebKit ${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework/WebKit";
+			shellScript = "if [[ ${PLATFORM_NAME} != \"iphoneos\" ]]; then\n    exit 0;\nfi\n\nif [[ ! -d \"${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework\" ]]; then\n    mkdir -p \"${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework\"\nfi\n\n# If the symlink already exists, remove it and create the new one in its place.\nln -s -h -f ../../Frameworks/WebKit.framework/WebKit ${INSTALL_DIR}/../PrivateFrameworks/WebKit.framework/WebKit";
 		};
 		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