Skip to content

Commit

Permalink
umu_run: set WINEDLLPATH
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Jun 5, 2024
1 parent 757ffe5 commit 232ef14
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions umu/umu_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,12 @@ def set_env(
env["WINESERVER"] = proton.wineserver_bin
env["WINETRICKS_LATEST_VERSION_CHECK"] = "disabled"
env["LD_PRELOAD"] = ""
env["WINEDLLPATH"] = ":".join(
[
Path(proton.lib_dir, "wine").as_posix(),
Path(proton.lib64_dir, "wine").as_posix(),
]
)
env["WINETRICKS_SUPER_QUIET"] = (
"" if os.environ.get("UMU_LOG") == "debug" else "1"
)
Expand Down

0 comments on commit 232ef14

Please sign in to comment.