diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/environment.py b/environment.py index e62e1c7..16369f7 100644 --- a/environment.py +++ b/environment.py @@ -2007,6 +2007,8 @@ def get_library_dirs(): # I just don't know what the correct solution is. if plat == 'i686': plat = 'i386' + if plat.startswith('arm'): + plat = 'arm' unixdirs += glob('/usr/lib/' + plat + '*') if os.path.exists('/usr/lib64'): unixdirs.append('/usr/lib64') |