fix ppc detection

This commit is contained in:
Marcos Pinto 2008-02-15 17:07:56 +00:00
parent 5fc175092b
commit 02d66701c4
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,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.machine() == "ppc":
elif platform.machine() == "Power Macintosh":
print "PowerPC system detected"
ARCH = "ppc"
else: