Skip to content
Snippets Groups Projects
Commit b3fe64c5 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

runtime: Set LD_LIBRARY_PATH before using capsule-capture-libs


At this stage we expect to have `LD_LIBRARY_PATH` set to the
`SYSTEM_LD_LIBRARY_PATH` of `steam.sh`.

This means that we should treat the `LD_LIBRARY_PATH` entries as
OS-level search path too.

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 8fae17bf
No related branches found
No related tags found
1 merge request!157runtime: Set LD_LIBRARY_PATH before using capsule-capture-libs
Pipeline #4955 passed
...@@ -1183,8 +1183,15 @@ static FlatpakBwrap * ...@@ -1183,8 +1183,15 @@ static FlatpakBwrap *
pv_runtime_get_capsule_capture_libs (PvRuntime *self, pv_runtime_get_capsule_capture_libs (PvRuntime *self,
RuntimeArchitecture *arch) RuntimeArchitecture *arch)
{ {
const gchar *ld_library_path;
FlatpakBwrap *ret = pv_bwrap_copy (self->container_access_adverb); FlatpakBwrap *ret = pv_bwrap_copy (self->container_access_adverb);
/* If we have a custom "LD_LIBRARY_PATH", we want to preserve
* it when calling capsule-capture-libs */
ld_library_path = g_environ_getenv (self->original_environ, "LD_LIBRARY_PATH");
if (ld_library_path != NULL)
flatpak_bwrap_set_env (ret, "LD_LIBRARY_PATH", ld_library_path, TRUE);
flatpak_bwrap_add_args (ret, flatpak_bwrap_add_args (ret,
arch->capsule_capture_libs, arch->capsule_capture_libs,
"--container", self->container_access, "--container", self->container_access,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment