Title: [234860] trunk/Tools
Revision
234860
Author
[email protected]
Date
2018-08-14 12:04:56 -0700 (Tue, 14 Aug 2018)

Log Message

[Flatpak] Fix --cmakeargs
https://bugs.webkit.org/show_bug.cgi?id=188567

Patch by Patrick Griffis <[email protected]> on 2018-08-14
Reviewed by Michael Catanzaro.

* flatpak/flatpakutils.py:
(WebkitFlatpak.setup_dev_env):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (234859 => 234860)


--- trunk/Tools/ChangeLog	2018-08-14 18:24:02 UTC (rev 234859)
+++ trunk/Tools/ChangeLog	2018-08-14 19:04:56 UTC (rev 234860)
@@ -1,3 +1,13 @@
+2018-08-14  Patrick Griffis  <[email protected]>
+
+        [Flatpak] Fix --cmakeargs
+        https://bugs.webkit.org/show_bug.cgi?id=188567
+
+        Reviewed by Michael Catanzaro.
+
+        * flatpak/flatpakutils.py:
+        (WebkitFlatpak.setup_dev_env):
+
 2018-08-14  Darshan Kadu  <[email protected]>
 
         Enhancement request: Make export-w3c-test-changes add the PR to "See Also" links

Modified: trunk/Tools/flatpak/flatpakutils.py (234859 => 234860)


--- trunk/Tools/flatpak/flatpakutils.py	2018-08-14 18:24:02 UTC (rev 234859)
+++ trunk/Tools/flatpak/flatpakutils.py	2018-08-14 19:04:56 UTC (rev 234860)
@@ -787,7 +787,7 @@
             if self.makeargs:
                 builder.append("--makeargs=%s" % self.makeargs)
             if self.cmakeargs:
-                builder.append("--makeargs=%s" % self.cmakeargs)
+                builder.append("--cmakeargs=%s" % self.cmakeargs)
             Console.message("Building webkit")
             res = self.run_in_sandbox(*builder)
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to