+ only apply lib64 schema on Linux
(TODO: check for Debian)
This commit is contained in:
parent
47dc1e197b
commit
98f5a79129
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ def shortest_name(libs):
|
|||
name = lib
|
||||
return name
|
||||
|
||||
if platform.uname()[4] == 'x86_64':
|
||||
if platform.uname()[4] == 'x86_64' and platform.system() == 'Linux' :
|
||||
LIBDIR_SCHEMA='lib64'
|
||||
elif platform.uname()[4] == 'ppc64':
|
||||
LIBDIR_SCHEMA='lib64'
|
||||
|
|
Loading…
Reference in a new issue