From c6202e1986829368141a5198b42a5c5b9e15e4f9 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 1 Jun 2007 21:15:14 +0000 Subject: [PATCH] ppc detection fix --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 00a148bc0..b6a08980e 100644 --- a/setup.py +++ b/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: