mirror of
https://github.com/lutris/lutris
synced 2024-11-02 13:31:16 +00:00
Add /usr/lib64 to runtime paths (Fixes #1156)
This commit is contained in:
parent
c1f80acc87
commit
aa75690e0d
1 changed files with 2 additions and 0 deletions
|
@ -164,6 +164,8 @@ def get_paths(prefer_system_libs=True, wine_path=None):
|
|||
paths.append("/usr/lib")
|
||||
if os.path.exists("/usr/lib32"):
|
||||
paths.append("/usr/lib32")
|
||||
if os.path.exists("/usr/lib64"):
|
||||
paths.append("/usr/lib64")
|
||||
if os.path.exists("/lib/x86_64-linux-gnu"):
|
||||
paths.append("/lib/x86_64-linux-gnu")
|
||||
if os.path.exists("/lib/i386-linux-gnu"):
|
||||
|
|
Loading…
Reference in a new issue