From 50f853494fad030055f4b07e0f3325c48aaba053 Mon Sep 17 00:00:00 2001 From: "nrthomas%gmail.com" Date: Tue, 28 Sep 2010 21:35:33 +0000 Subject: [PATCH] Bug 600328, fix orange on tiger talos from bug 598507, r=anodelman git-svn-id: svn://10.0.0.236/trunk@261300 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/testing/performance/talos/ffprocess_mac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/testing/performance/talos/ffprocess_mac.py b/mozilla/testing/performance/talos/ffprocess_mac.py index e0c16930402..443da490606 100644 --- a/mozilla/testing/performance/talos/ffprocess_mac.py +++ b/mozilla/testing/performance/talos/ffprocess_mac.py @@ -77,7 +77,7 @@ class MacProcess(FFProcess): be executed as an i386 binary, in case it's a 32-bit/64-bit universal binary. """ - if hasattr(platform, 'mac_ver') and platform.mac_ver()[0][:4] < '10.6': + if hasattr(platform, 'mac_ver') and platform.mac_ver()[0][:4] == '10.5': return "arch -arch i386 " + cmd return cmd