Title: [281595] trunk/Source/WebKit
Revision
281595
Author
[email protected]
Date
2021-08-25 15:45:58 -0700 (Wed, 25 Aug 2021)

Log Message

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

Reviewed by Alexey Proskuryakov.

Build fix after https://commits.webkit.org/240941@main.

* Scripts/generate-derived-sources.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (281594 => 281595)


--- trunk/Source/WebKit/ChangeLog	2021-08-25 22:34:36 UTC (rev 281594)
+++ trunk/Source/WebKit/ChangeLog	2021-08-25 22:45:58 UTC (rev 281595)
@@ -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.
+
+        Build fix after https://commits.webkit.org/240941@main.
+
+        * Scripts/generate-derived-sources.sh:
+
 2021-08-25  Aditya Keerthi  <[email protected]>
 
         [iOS] Crash when tapping <select> element and calling window.open()

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


--- trunk/Source/WebKit/Scripts/generate-derived-sources.sh	2021-08-25 22:34:36 UTC (rev 281594)
+++ trunk/Source/WebKit/Scripts/generate-derived-sources.sh	2021-08-25 22:45:58 UTC (rev 281595)
@@ -10,7 +10,7 @@
 export WebKit2="${SRCROOT}"
 
 
-if [ $1 != "sandbox-profiles-ios" ]; then
+if [ -z $1 ] || [ $1 != "sandbox-profiles-ios" ]; then
     /bin/ln -sfh "${_javascript_CORE_PRIVATE_HEADERS_DIR}" _javascript_CorePrivateHeaders
     export _javascript_Core_SCRIPTS_DIR="_javascript_CorePrivateHeaders"
 fi
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to