Title: [281577] trunk/Source/WebKit
Revision
281577
Author
[email protected]
Date
2021-08-25 13:33:44 -0700 (Wed, 25 Aug 2021)

Log Message

Build error preprocessing sandbox
https://bugs.webkit.org/show_bug.cgi?id=229418

Reviewed by Alexey Proskuryakov.

Skip unneeded commands when preprocessing sandbox on iOS.

* Scripts/generate-derived-sources.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (281576 => 281577)


--- trunk/Source/WebKit/ChangeLog	2021-08-25 19:59:37 UTC (rev 281576)
+++ trunk/Source/WebKit/ChangeLog	2021-08-25 20:33:44 UTC (rev 281577)
@@ -1,3 +1,14 @@
+2021-08-25  Per Arne Vollan  <[email protected]>
+
+        Build error preprocessing sandbox
+        https://bugs.webkit.org/show_bug.cgi?id=229418
+
+        Reviewed by Alexey Proskuryakov.
+
+        Skip unneeded commands when preprocessing sandbox on iOS.
+
+        * Scripts/generate-derived-sources.sh:
+
 2021-08-25  Wenson Hsieh  <[email protected]>
 
         [iOS 15] editing/input/cocoa/autocorrect-on.html times out when run after editing/input/cocoa/autocorrect-off.html

Modified: trunk/Source/WebKit/Scripts/generate-derived-sources.sh (281576 => 281577)


--- trunk/Source/WebKit/Scripts/generate-derived-sources.sh	2021-08-25 19:59:37 UTC (rev 281576)
+++ trunk/Source/WebKit/Scripts/generate-derived-sources.sh	2021-08-25 20:33:44 UTC (rev 281577)
@@ -9,9 +9,12 @@
 
 export WebKit2="${SRCROOT}"
 
-/bin/ln -sfh "${_javascript_CORE_PRIVATE_HEADERS_DIR}" _javascript_CorePrivateHeaders
-export _javascript_Core_SCRIPTS_DIR="_javascript_CorePrivateHeaders"
 
+if [ $1 != "sandbox-profiles-ios" ]; then
+    /bin/ln -sfh "${_javascript_CORE_PRIVATE_HEADERS_DIR}" _javascript_CorePrivateHeaders
+    export _javascript_Core_SCRIPTS_DIR="_javascript_CorePrivateHeaders"
+fi
+
 if [ ! "$CC" ]; then
     export CC="`xcrun -find clang`"
 fi
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to