From 59327f630be6aebec2e468634c4268a39b3ae5fa Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Sat, 8 Feb 2014 19:33:38 -0800 Subject: [PATCH] john-jumbo: fix 64-bit method --- Formula/john-jumbo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/john-jumbo.rb b/Formula/john-jumbo.rb index 658b0ec5a06..9af025b2333 100644 --- a/Formula/john-jumbo.rb +++ b/Formula/john-jumbo.rb @@ -26,7 +26,7 @@ class JohnJumbo < Formula def install ENV.deparallelize - arch = Hardware.prefer_64_bit? ? '64' : 'sse2' + arch = MacOS.prefer_64_bit? ? '64' : 'sse2' arch += '-opencl' target = "macosx-x86-#{arch}"