Fix for arm library finding.

pull/15/head
Jussi Pakkanen 11 years ago
parent 154dc83973
commit 6f8222a46e
  1. 2
      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')

Loading…
Cancel
Save