mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
ppc detection fix
This commit is contained in:
parent
f5e4990016
commit
c6202e1986
1 changed files with 1 additions and 1 deletions
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":
|
||||
print "64bit x86_64 system detected"
|
||||
ARCH = "x64"
|
||||
elif platform.processor() == "powerpc":
|
||||
elif platform.machine() == "powerpc":
|
||||
print "PowerPC system detected"
|
||||
ARCH = "ppc"
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue