From 06e16bff7d8a23122cdf7e70c07a356f14d631f2 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Thu, 15 Oct 2009 16:46:47 +0100 Subject: [PATCH] Remove check for gcc Since plenty of formula don't require it, I don't want to insist on gcc being installed. A better check is if gcc is required then check for version 4.2, which is all we support. However I can't easily do that. So I'm risking bug reports from people who didn't read the installation instructions and didn't install the right Xcode. But they deserver derision :P --- bin/brew | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bin/brew b/bin/brew index 8679014dc5..ddece3cf02 100755 --- a/bin/brew +++ b/bin/brew @@ -48,10 +48,6 @@ end case Hardware.cpu_type when :ppc, :dunno abort "Sorry, Homebrew does not support your computer's CPU architecture." end -unless system "/usr/bin/which -s gcc-4.2" - abort "Sorry, Homebrew requires gcc 4.2, which is provided by Xcode 3.1 and later." -end - begin require 'brew.h'