Title: [165295] trunk/Source/WebKit2
Revision
165295
Author
[email protected]
Date
2014-03-07 14:53:27 -0800 (Fri, 07 Mar 2014)

Log Message

[iOS] Install WebKit2 XPC services to the correct place during iOS Simulator builds
https://bugs.webkit.org/show_bug.cgi?id=129914

Reviewed by Dan Bernstein.

We weren't specifying INSTALL_PATH for iOS Simulator builds in
BaseXPCService.xcconfig, and r164576 changed INSTALL_PATH to
INSTALL_PATH_ACTUAL. This caused XPC services to start being installed
to the root of the iOS Simulator SDK. Fix this by setting
INSTALL_PATH_ACTUAL for iphonesimulator.

* Configurations/BaseXPCService.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (165294 => 165295)


--- trunk/Source/WebKit2/ChangeLog	2014-03-07 22:52:38 UTC (rev 165294)
+++ trunk/Source/WebKit2/ChangeLog	2014-03-07 22:53:27 UTC (rev 165295)
@@ -1,3 +1,18 @@
+2014-03-07  Andy Estes  <[email protected]>
+
+        [iOS] Install WebKit2 XPC services to the correct place during iOS Simulator builds
+        https://bugs.webkit.org/show_bug.cgi?id=129914
+
+        Reviewed by Dan Bernstein.
+
+        We weren't specifying INSTALL_PATH for iOS Simulator builds in
+        BaseXPCService.xcconfig, and r164576 changed INSTALL_PATH to
+        INSTALL_PATH_ACTUAL. This caused XPC services to start being installed
+        to the root of the iOS Simulator SDK. Fix this by setting
+        INSTALL_PATH_ACTUAL for iphonesimulator.
+
+        * Configurations/BaseXPCService.xcconfig:
+
 2014-03-07  Andreas Kling  <[email protected]>
 
         [Mac] Notify system malloc of fake memory pressure.

Modified: trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig (165294 => 165295)


--- trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2014-03-07 22:52:38 UTC (rev 165294)
+++ trunk/Source/WebKit2/Configurations/BaseXPCService.xcconfig	2014-03-07 22:53:27 UTC (rev 165295)
@@ -30,6 +30,7 @@
 INSTALL_PATH_ACTUAL_Normal = $(INSTALL_PATH_ACTUAL_Normal_$(PLATFORM_NAME));
 INSTALL_PATH_ACTUAL_Normal_macosx = $(WEBKIT2_FRAMEWORKS_DIR)/WebKit2.framework/Versions/A/XPCServices;
 INSTALL_PATH_ACTUAL_Normal_iphoneos = $(WEBKIT2_FRAMEWORKS_DIR)/WebKit2.framework/XPCServices;
+INSTALL_PATH_ACTUAL_Normal_iphonesimulator = $(INSTALL_PATH_ACTUAL_Normal_iphoneos);
 
 INSTALL_PATH_ACTUAL_Development = $(APPLE_INTERNAL_DIR)/WebKit/XPCServicesForDevelopment;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to