Changeset 262121 in webkit


Ignore:
Timestamp:
May 25, 2020 4:58:17 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[Flatpak][GStreamer] compilation fails when GST_BUILD_PATH is defined
https://bugs.webkit.org/show_bug.cgi?id=212343

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2020-05-25
Reviewed by Philippe Normand.

Flatpak's command has to be expressed before gst-env declaration.

  • flatpak/flatpakutils.py:

(WebkitFlatpak.run_in_sandbox):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r262119 r262121  
     12020-05-25  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
     2
     3        [Flatpak][GStreamer] compilation fails when GST_BUILD_PATH is defined
     4        https://bugs.webkit.org/show_bug.cgi?id=212343
     5
     6        Reviewed by Philippe Normand.
     7
     8        Flatpak's command has to be expressed before gst-env declaration.
     9
     10        * flatpak/flatpakutils.py:
     11        (WebkitFlatpak.run_in_sandbox):
     12
    1132020-05-25  Adrian Perez de Castro  <aperez@igalia.com>
    214
  • trunk/Tools/flatpak/flatpakutils.py

    r262117 r262121  
    787787            gst_env = self.setup_gstbuild(building)
    788788
    789         flatpak_command += extra_flatpak_args + gst_env + ['--command=%s' % args[0], "org.webkit.Sdk"] + args[1:]
     789        flatpak_command += extra_flatpak_args + ['--command=%s' % args[0], "org.webkit.Sdk"] + gst_env + args[1:]
    790790
    791791        flatpak_env = os.environ
Note: See TracChangeset for help on using the changeset viewer.