mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-17 13:56:47 +00:00
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…
x
Reference in New Issue
Block a user