Title: [224437] trunk/Tools
Revision
224437
Author
aes...@apple.com
Date
2017-11-03 15:49:17 -0700 (Fri, 03 Nov 2017)

Log Message

[iOS] Append the platform name to the product directory on all embedded platforms
https://bugs.webkit.org/show_bug.cgi?id=179271

Reviewed by Joseph Pecoraro.

* Scripts/webkitdirs.pm:
(determineConfigurationProductDir):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (224436 => 224437)


--- trunk/Tools/ChangeLog	2017-11-03 22:42:13 UTC (rev 224436)
+++ trunk/Tools/ChangeLog	2017-11-03 22:49:17 UTC (rev 224437)
@@ -1,3 +1,13 @@
+2017-11-03  Andy Estes  <aes...@apple.com>
+
+        [iOS] Append the platform name to the product directory on all embedded platforms
+        https://bugs.webkit.org/show_bug.cgi?id=179271
+
+        Reviewed by Joseph Pecoraro.
+
+        * Scripts/webkitdirs.pm:
+        (determineConfigurationProductDir):
+
 2017-11-03  Basuke Suzuki  <basuke.suz...@sony.com>
 
         [WinCairo] Add --wincairo option to run-webkit-tests

Modified: trunk/Tools/Scripts/webkitdirs.pm (224436 => 224437)


--- trunk/Tools/Scripts/webkitdirs.pm	2017-11-03 22:42:13 UTC (rev 224436)
+++ trunk/Tools/Scripts/webkitdirs.pm	2017-11-03 22:49:17 UTC (rev 224437)
@@ -802,7 +802,7 @@
             $configurationProductDir = "$baseProductDir";
         } else {
             $configurationProductDir = "$baseProductDir/$configuration";
-            $configurationProductDir .= "-" . xcodeSDKPlatformName() if isIOSWebKit();
+            $configurationProductDir .= "-" . xcodeSDKPlatformName() if isEmbeddedWebKit();
         }
     }
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to