From 6c22fac9f335a3604468cae0fa0bacb8f6b089fb Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Mon, 19 May 2025 10:15:08 +0300 Subject: [PATCH] proton: Add a missing comma. The missing comma causes what is supposed to be two separate tuple entries: '/lib/wine/x86_64-windows' '/lib/wine', to be concatenated into one: '/lib/wine/x86_64-windows/lib/wine', Fixes: cc6cd89eac00 ("proton: Install DLLs and libraries to arch specific directories.") --- proton | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proton b/proton index e9f65a72..8adf3b5e 100755 --- a/proton +++ b/proton @@ -85,7 +85,7 @@ def file_is_wine_builtin_dll(path): '/lib/wine/i386-unix', '/lib/wine/i386-windows', '/lib/wine/x86_64-unix', - '/lib/wine/x86_64-windows' + '/lib/wine/x86_64-windows', # old paths '/lib/wine', '/lib/wine/fakedlls',