mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-31 03:37:35 +01:00
Update wine
This commit is contained in:
parent
f0553aabb5
commit
053954076c
4 changed files with 14 additions and 8 deletions
13
proton
13
proton
|
|
@ -31,7 +31,7 @@ from random import randrange
|
|||
#To enable debug logging, copy "user_settings.sample.py" to "user_settings.py"
|
||||
#and edit it if needed.
|
||||
|
||||
CURRENT_PREFIX_VERSION="6.3-3"
|
||||
CURRENT_PREFIX_VERSION="7.0-100"
|
||||
|
||||
PFX="Proton: "
|
||||
ld_path_var = "LD_LIBRARY_PATH"
|
||||
|
|
@ -58,7 +58,16 @@ def log(msg):
|
|||
def file_is_wine_builtin_dll(path):
|
||||
if os.path.islink(path):
|
||||
contents = os.readlink(path)
|
||||
if os.path.dirname(contents).endswith(('/lib/wine/i386-unix', '/lib/wine/i386-windows', '/lib64/wine/x86_64-unix', '/lib64/wine/x86_64-windows')):
|
||||
if os.path.dirname(contents).endswith((
|
||||
'/lib/wine',
|
||||
'/lib64/wine',
|
||||
'/lib/wine/fakedlls',
|
||||
'/lib64/wine/fakedlls',
|
||||
'/lib/wine/i386-unix',
|
||||
'/lib/wine/i386-windows',
|
||||
'/lib64/wine/x86_64-unix',
|
||||
'/lib64/wine/x86_64-windows'
|
||||
)):
|
||||
# This may be a broken link to a dll in a removed Proton install
|
||||
return True
|
||||
if not os.path.exists(path):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue