Fix for arm library finding.

This commit is contained in:
Jussi Pakkanen 2014-09-21 14:13:22 +03:00
parent 154dc83973
commit 6f8222a46e
1 changed files with 2 additions and 0 deletions

View File

@ -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')