From f274ad32504b9b04ea0cf041f375f3f11c9949fb Mon Sep 17 00:00:00 2001 From: Misty De Meo <mistydemeo@gmail.com> Date: Mon, 29 Jul 2013 18:44:34 -0700 Subject: [PATCH] superenv: fix locating non-Xcode gcc-4.2 --- Library/Homebrew/superenv.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/superenv.rb b/Library/Homebrew/superenv.rb index 8bed661255..b15d40f6be 100644 --- a/Library/Homebrew/superenv.rb +++ b/Library/Homebrew/superenv.rb @@ -65,7 +65,7 @@ class << ENV # Homebrew's apple-gcc42 will be outside the PATH in superenv, # so xcrun may not be able to find it - if ENV['HOMEBREW_CC'] == 'gcc-4.2' && !MacOS.locate('gcc-4.2') + if ENV['HOMEBREW_CC'] == 'gcc-4.2' apple_gcc42 = Formula.factory('apple-gcc42') rescue nil ENV.append('PATH', apple_gcc42.opt_prefix/'bin', ':') if apple_gcc42 end -- GitLab