From 53eee3161e680148b7a8e269d2cc7b1174b86c60 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Wed, 27 Dec 2023 16:55:19 +0100 Subject: [PATCH] default_pfx: Set DLL search path. --- default_pfx.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/default_pfx.py b/default_pfx.py index 414df8a1..e59a51ca 100755 --- a/default_pfx.py +++ b/default_pfx.py @@ -121,10 +121,12 @@ def make_default_pfx(default_pfx_dir, dist_dir): local_env = dict(os.environ) ld_path = dist_dir + "/lib64:" + dist_dir + "/lib" + dll_path = dist_dir + "/lib64/vkd3d:" + dist_dir + "/lib/vkd3d" local_env["LD_LIBRARY_PATH"] = ld_path local_env["WINEPREFIX"] = default_pfx_dir local_env["WINEDEBUG"] = "-all" + local_env["WINEDLLPATH"] = dll_path runtime_args = [] subprocess.run(runtime_args + ["/bin/bash", "-c",