don't install by default in lib64 on debian systems - closes #394
This commit is contained in:
parent
d78a100134
commit
cd2cd2ba51
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ def shortest_name(libs):
|
||||||
name = lib
|
name = lib
|
||||||
return name
|
return name
|
||||||
|
|
||||||
if platform.uname()[4] == 'x86_64' and platform.system() == 'Linux':
|
if platform.uname()[4] == 'x86_64' and platform.system() == 'Linux' and not platform.dist()[0] == 'debian':
|
||||||
LIBDIR_SCHEMA='lib64'
|
LIBDIR_SCHEMA='lib64'
|
||||||
elif platform.uname()[4] == 'ppc64':
|
elif platform.uname()[4] == 'ppc64':
|
||||||
LIBDIR_SCHEMA='lib64'
|
LIBDIR_SCHEMA='lib64'
|
||||||
|
|
Loading…
Reference in a new issue