stop defaulting to lib64 on 64 bit unix systems - closes #1297

This commit is contained in:
Dane Springmeyer 2012-07-06 11:35:29 -07:00
parent 7499013843
commit 6e5a68f372

View file

@ -237,8 +237,6 @@ def sort_paths(items,priority):
if platform.dist()[0] in ('Ubuntu','debian'):
LIBDIR_SCHEMA='lib'
elif platform.uname()[4] == 'x86_64' and platform.system() == 'Linux':
LIBDIR_SCHEMA='lib64'
elif platform.uname()[4] == 'ppc64':
LIBDIR_SCHEMA='lib64'
else: