aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compilers.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-02-12 21:36:06 -0800
committerMike McQuaid2013-02-18 19:37:44 +0000
commitc98d50495275ff4951dd126bb88a55e568b64092 (patch)
treea601af176d66bd257339996c80ea6969f532d415 /Library/Homebrew/compilers.rb
parent23e4210689ee321041612d3d2f4c6b5da1e59a0a (diff)
downloadhomebrew-c98d50495275ff4951dd126bb88a55e568b64092.tar.bz2
Only fails_with compiler version for developers.
Closes #17618. Closes #17813.
Diffstat (limited to 'Library/Homebrew/compilers.rb')
-rw-r--r--Library/Homebrew/compilers.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/compilers.rb b/Library/Homebrew/compilers.rb
index 4742dcfb5..715497952 100644
--- a/Library/Homebrew/compilers.rb
+++ b/Library/Homebrew/compilers.rb
@@ -101,6 +101,7 @@ class CompilerSelector
@compilers = @compilers.reject do |cc|
failure = @f.fails_with? cc
next unless failure
+ next unless ARGV.homebrew_developer?
failure.build >= cc.build
end