aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2009-10-15 16:46:47 +0100
committerMax Howell2009-10-15 16:51:59 +0100
commit06e16bff7d8a23122cdf7e70c07a356f14d631f2 (patch)
tree7f63198327940d9d393dbcd8bb78711a09d6a32c
parent6c2555b4766c1a9a19e3d49b9ce6db424cc869e6 (diff)
downloadbrew-06e16bff7d8a23122cdf7e70c07a356f14d631f2.tar.bz2
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
-rwxr-xr-xbin/brew4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/brew b/bin/brew
index 8679014dc..ddece3cf0 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'