Title: [195844] trunk/Source/WebKit2
Revision
195844
Author
[email protected]
Date
2016-01-29 15:06:29 -0800 (Fri, 29 Jan 2016)

Log Message

Don’t use the “.Development” suffix for engineering builds targeting iOS devices, because the XPC cache is only aware of the unsuffixed service identifiers.

Reviewed by Chris Dumez.

* Configurations/DebugRelease.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (195843 => 195844)


--- trunk/Source/WebKit2/ChangeLog	2016-01-29 23:01:01 UTC (rev 195843)
+++ trunk/Source/WebKit2/ChangeLog	2016-01-29 23:06:29 UTC (rev 195844)
@@ -1,3 +1,11 @@
+2016-01-29  Dan Bernstein  <[email protected]>
+
+        Don’t use the “.Development” suffix for engineering builds targeting iOS devices, because the XPC cache is only aware of the unsuffixed service identifiers.
+
+        Reviewed by Chris Dumez.
+
+        * Configurations/DebugRelease.xcconfig:
+
 2016-01-29  Enrica Casucci  <[email protected]>
 
         One more iOS build fix.

Modified: trunk/Source/WebKit2/Configurations/DebugRelease.xcconfig (195843 => 195844)


--- trunk/Source/WebKit2/Configurations/DebugRelease.xcconfig	2016-01-29 23:01:01 UTC (rev 195843)
+++ trunk/Source/WebKit2/Configurations/DebugRelease.xcconfig	2016-01-29 23:06:29 UTC (rev 195844)
@@ -50,4 +50,5 @@
 WK_MANUAL_SANDBOXING_ENABLED[sdk=iphoneos*] = YES;
 
 WK_RELOCATABLE_FRAMEWORKS = YES;
-WK_XPC_SERVICE_SUFFIX = .Development;
+WK_XPC_SERVICE_SUFFIX[sdk=macosx*] = .Development;
+WK_XPC_SERVICE_SUFFIX[sdk=*simulator*] = .Development;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to