ppc detection fix

This commit is contained in:
Marcos Pinto 2007-06-01 21:15:14 +00:00
parent f5e4990016
commit c6202e1986
1 changed files with 1 additions and 1 deletions

View File

@ -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: