Skip to content
Snippets Groups Projects
Commit a3140c42 authored by Simon McVittie's avatar Simon McVittie
Browse files

pv_wrap_append_preload: Only consider paths for export if absolute


FlatpakExports isn't going to export relative paths anyway.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent db43c357
No related branches found
No related tags found
1 merge request!337pressure-vessel: Remap preloadable modules better
......@@ -363,7 +363,7 @@ append_preload_internal (GPtrArray *argv,
g_ptr_array_add (argv, g_strdup_printf ("%s=%s", option, original_path));
if (exports != NULL)
if (exports != NULL && original_path[0] == '/')
{
const gchar *steam_path = g_environ_getenv (env, "STEAM_COMPAT_CLIENT_INSTALL_PATH");
......
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