Title: [262052] trunk/Tools
Revision
262052
Author
jfernan...@igalia.com
Date
2020-05-22 04:28:36 -0700 (Fri, 22 May 2020)

Log Message

[Flatpak SDK] CCACHE_ env vars are not forwarded to the sandbox environment
https://bugs.webkit.org/show_bug.cgi?id=212257

Reviewed by Philippe Normand.

Added the "CCACHE" prefix to the ones the SDK should keep from the
user's environment, and forwarded to the Flatpak sandbox.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (262051 => 262052)


--- trunk/Tools/ChangeLog	2020-05-22 11:15:00 UTC (rev 262051)
+++ trunk/Tools/ChangeLog	2020-05-22 11:28:36 UTC (rev 262052)
@@ -1,3 +1,16 @@
+2020-05-22  Javier Fernandez  <jfernan...@igalia.com>
+
+        [Flatpak SDK] CCACHE_ env vars are not forwarded to the sandbox environment
+        https://bugs.webkit.org/show_bug.cgi?id=212257
+
+        Reviewed by Philippe Normand.
+
+        Added the "CCACHE" prefix to the ones the SDK should keep from the
+        user's environment, and forwarded to the Flatpak sandbox.
+
+        * flatpak/flatpakutils.py:
+        (WebkitFlatpak.run_in_sandbox):
+
 2020-05-22  Tim Horton  <timothy_hor...@apple.com>
 
         iOS: Pressing tab in the Mail subject field moves focus to the body, but pressing shift tab doesn't move it back

Modified: trunk/Tools/flatpak/flatpakutils.py (262051 => 262052)


--- trunk/Tools/flatpak/flatpakutils.py	2020-05-22 11:15:00 UTC (rev 262051)
+++ trunk/Tools/flatpak/flatpakutils.py	2020-05-22 11:28:36 UTC (rev 262052)
@@ -727,6 +727,7 @@
 
         env_var_prefixes_to_keep = [
             "G",
+            "CCACHE",
             "GIGACAGE",
             "GST",
             "GTK",
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to