From b059ffb9525a6943c049441dabb79f916c5b0149 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 23 Mar 2012 09:24:56 +1300 Subject: [PATCH] Bottles currently require 64-bit hardware on 10.6. --- Library/Homebrew/bottles.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/bottles.rb b/Library/Homebrew/bottles.rb index f64c91eb52..35d93c2a50 100644 --- a/Library/Homebrew/bottles.rb +++ b/Library/Homebrew/bottles.rb @@ -6,7 +6,7 @@ def bottle_filename f end def bottles_supported? - HOMEBREW_PREFIX.to_s == '/usr/local' and HOMEBREW_CELLAR.to_s == '/usr/local/Cellar' + HOMEBREW_PREFIX.to_s == '/usr/local' and HOMEBREW_CELLAR.to_s == '/usr/local/Cellar' and Hardware.is_64_bit? || !MacOS.snow_leopard? end def install_bottle? f