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.")
This commit is contained in:
Arkadiusz Hiler 2025-05-19 10:15:08 +03:00
parent 7001ed626e
commit 6c22fac9f3

2
proton
View File

@ -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',