installpanda: Correct lib dir detection on ArchLinux
Eliminates a downstream patch in the AUR [skip ci]
This commit is contained in:
parent
be2f6a7c61
commit
484a9394f9
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue