diff --git a/makepanda/installpanda.py b/makepanda/installpanda.py index 529913aadf..d0111e0049 100644 --- a/makepanda/installpanda.py +++ b/makepanda/installpanda.py @@ -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()