Title: [288917] trunk/Source/WebKit
Revision
288917
Author
[email protected]
Date
2022-02-01 15:53:14 -0800 (Tue, 01 Feb 2022)

Log Message

Catalyst builds of WebKit with system content path put XPCServices and Daemons in the normal location
https://bugs.webkit.org/show_bug.cgi?id=235976

Reviewed by Mark Lam.

The production of WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_YES used the system framework path
instead of using the computed value of NORMAL_WEBKIT_FRAMEWORKS_DIR which includes the Catalyst prefix.

* Configurations/BaseTarget.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (288916 => 288917)


--- trunk/Source/WebKit/ChangeLog	2022-02-01 23:24:29 UTC (rev 288916)
+++ trunk/Source/WebKit/ChangeLog	2022-02-01 23:53:14 UTC (rev 288917)
@@ -1,3 +1,15 @@
+2022-02-01  Michael Saboff  <[email protected]>
+
+        Catalyst builds of WebKit with system content path put XPCServices and Daemons in the normal location
+        https://bugs.webkit.org/show_bug.cgi?id=235976
+
+        Reviewed by Mark Lam.
+
+        The production of WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_YES used the system framework path
+        instead of using the computed value of NORMAL_WEBKIT_FRAMEWORKS_DIR which includes the Catalyst prefix.
+
+        * Configurations/BaseTarget.xcconfig:
+
 2022-02-01  Per Arne Vollan  <[email protected]>
 
         [macOS][WP] Add required syscall

Modified: trunk/Source/WebKit/Configurations/BaseTarget.xcconfig (288916 => 288917)


--- trunk/Source/WebKit/Configurations/BaseTarget.xcconfig	2022-02-01 23:24:29 UTC (rev 288916)
+++ trunk/Source/WebKit/Configurations/BaseTarget.xcconfig	2022-02-01 23:53:14 UTC (rev 288917)
@@ -67,7 +67,7 @@
 NORMAL_WEBKIT_FRAMEWORKS_DIR = $(WK_ALTERNATE_WEBKIT_SDK_PATH)$(SYSTEM_LIBRARY_DIR)/Frameworks;
 
 WEBKIT_FRAMEWORKS_DIR = $(WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_$(USE_SYSTEM_CONTENT_PATH));
-WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_YES = $(SYSTEM_CONTENT_PATH)$(SYSTEM_LIBRARY_DIR)/Frameworks;
+WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_YES = $(SYSTEM_CONTENT_PATH)$(NORMAL_WEBKIT_FRAMEWORKS_DIR);
 WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_ = $(WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_NO);
 WEBKIT_FRAMEWORKS_DIR_USE_SYSTEM_CONTENT_PATH_NO = $(WEBKIT_FRAMEWORKS_DIR_USE_OVERRIDE_FRAMEWORKS_DIR_$(WK_USE_OVERRIDE_FRAMEWORKS_DIR));
 WEBKIT_FRAMEWORKS_DIR_USE_OVERRIDE_FRAMEWORKS_DIR_NO = $(NORMAL_WEBKIT_FRAMEWORKS_DIR);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to