Title: [265323] trunk/Tools
Revision
265323
Author
commit-qu...@webkit.org
Date
2020-08-06 03:55:28 -0700 (Thu, 06 Aug 2020)

Log Message

build-webkit script tries to execute command xcodebuild on Linux
https://bugs.webkit.org/show_bug.cgi?id=214353

Patch by Rob Buis <rb...@igalia.com> on 2020-08-06
Reviewed by Carlos Alberto Lopez Perez.

Only call the function determineXcodeSDK() when
building for an Apple/Cocoa platform.

* Scripts/webkitdirs.pm:
(argumentsForConfiguration):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (265322 => 265323)


--- trunk/Tools/ChangeLog	2020-08-06 08:41:53 UTC (rev 265322)
+++ trunk/Tools/ChangeLog	2020-08-06 10:55:28 UTC (rev 265323)
@@ -1,3 +1,16 @@
+2020-08-06  Rob Buis  <rb...@igalia.com>
+
+        build-webkit script tries to execute command xcodebuild on Linux
+        https://bugs.webkit.org/show_bug.cgi?id=214353
+
+        Reviewed by Carlos Alberto Lopez Perez.
+
+        Only call the function determineXcodeSDK() when
+        building for an Apple/Cocoa platform.
+
+        * Scripts/webkitdirs.pm:
+        (argumentsForConfiguration):
+
 2020-08-05  Aakash Jain  <aakash_j...@apple.com>
 
         Rename BigSur EWS to AppleSilicon EWS

Modified: trunk/Tools/Scripts/webkitdirs.pm (265322 => 265323)


--- trunk/Tools/Scripts/webkitdirs.pm	2020-08-06 08:41:53 UTC (rev 265322)
+++ trunk/Tools/Scripts/webkitdirs.pm	2020-08-06 10:55:28 UTC (rev 265323)
@@ -530,7 +530,9 @@
 {
     determineConfiguration();
     determineArchitecture();
-    determineXcodeSDK();
+    if (isAppleCocoaWebKit()) {
+        determineXcodeSDK();
+    }
 
     my @args = ();
     # FIXME: Is it necessary to pass --debug, --release, --32-bit or --64-bit?
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to