Title: [233513] trunk/Tools
Revision
233513
Author
[email protected]
Date
2018-07-05 00:40:00 -0700 (Thu, 05 Jul 2018)

Log Message

Unreviewed, rolling out r233511.

Proper fix provided in bug #187322

Reverted changeset:

"Unreviewed. Fixing a call in flatpakutils.py to
PortFactory.get(),"
https://trac.webkit.org/changeset/233511

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (233512 => 233513)


--- trunk/Tools/ChangeLog	2018-07-05 06:54:12 UTC (rev 233512)
+++ trunk/Tools/ChangeLog	2018-07-05 07:40:00 UTC (rev 233513)
@@ -1,3 +1,15 @@
+2018-07-05  Zan Dobersek  <[email protected]>
+
+        Unreviewed, rolling out r233511.
+
+        Proper fix provided in bug #187322
+
+        Reverted changeset:
+
+        "Unreviewed. Fixing a call in flatpakutils.py to
+        PortFactory.get(),"
+        https://trac.webkit.org/changeset/233511
+
 2018-07-04  Zan Dobersek  <[email protected]>
 
         Unreviewed. Fixing a call in flatpakutils.py to PortFactory.get(),

Modified: trunk/Tools/flatpak/flatpakutils.py (233512 => 233513)


--- trunk/Tools/flatpak/flatpakutils.py	2018-07-05 06:54:12 UTC (rev 233512)
+++ trunk/Tools/flatpak/flatpakutils.py	2018-07-05 07:40:00 UTC (rev 233513)
@@ -556,14 +556,14 @@
         self.makeargs = ""
 
     def clean_args(self):
-        self.platform = self.platform.upper()
-
         if not self.debug and not self.release:
             factory = PortFactory(SystemHost())
-            port = factory.get(self.platform.lower())
+            port = factory.get(self.platform)
             self.debug = port.default_configuration() == "Debug"
         self.build_type = "Debug" if self.debug else "Release"
 
+        self.platform = self.platform.upper()
+
         if self.gdb is None and '--gdb' in sys.argv:
             self.gdb = ""
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to