From 02d66701c4dd0a433394fa3d6a70b60a76310181 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 15 Feb 2008 17:07:56 +0000 Subject: [PATCH] fix ppc detection --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 57c6f6edb..c14e9a9fa 100644 --- a/setup.py +++ b/setup.py @@ -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: