From 6f8222a46e6be9dd74f3e42f5babdb2ed292098d Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 21 Sep 2014 14:13:22 +0300 Subject: [PATCH] Fix for arm library finding. --- environment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/environment.py b/environment.py index e62e1c742..16369f77f 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')