ppc detection fix
This commit is contained in:
parent
f5e4990016
commit
c6202e1986
2
setup.py
2
setup.py
|
@ -24,7 +24,7 @@ if platform.machine() == "i386" or platform.machine() == "i686":
|
||||||
elif platform.machine() == "x86_64" or platform.machine() == "amd64":
|
elif platform.machine() == "x86_64" or platform.machine() == "amd64":
|
||||||
print "64bit x86_64 system detected"
|
print "64bit x86_64 system detected"
|
||||||
ARCH = "x64"
|
ARCH = "x64"
|
||||||
elif platform.processor() == "powerpc":
|
elif platform.machine() == "powerpc":
|
||||||
print "PowerPC system detected"
|
print "PowerPC system detected"
|
||||||
ARCH = "ppc"
|
ARCH = "ppc"
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue