installpanda: Correct lib dir detection on ArchLinux

Eliminates a downstream patch in the AUR

[skip ci]
This commit is contained in:
rdb 2022-01-14 10:27:23 +01:00
parent be2f6a7c61
commit 484a9394f9

View File

@ -136,6 +136,9 @@ def GetLibDir():
if os.path.isfile('/etc/debian_version'):
return GetDebLibDir()
elif os.path.isfile('/etc/arch-release'):
# ArchLinux has lib64, but it is a symlink to lib.
return "lib"
else:
# Okay, maybe we're on an RPM-based system?
return GetRPMLibDir()