diff options
| author | William Woodruff | 2015-07-23 00:34:57 -0400 |
|---|---|---|
| committer | Misty De Meo | 2015-08-21 10:59:35 -0700 |
| commit | f58506ea6f7000e7e6d3f6538dc5ff2c43ea7926 (patch) | |
| tree | 2f1fa333267ac42de974981da4927a8c22687120 /Library/Homebrew/cmd/install.rb | |
| parent | 91e598cf3f88591f2146218eaa2ecc2a3a261e31 (diff) | |
| download | brew-f58506ea6f7000e7e6d3f6538dc5ff2c43ea7926.tar.bz2 | |
FormulaInstaller: add prevent_build_flags to eliminate code repetition
remove unneeded definition
change variable in FormulaInstaller.check_build_flags from bf to build_flags
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index ce9bf5291..f41450be1 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -40,11 +40,7 @@ module Homebrew # if the user's flags will prevent bottle only-installations when no # developer tools are available, we need to stop them early on - if !MacOS.can_build? - bf = ARGV.collect_build_flags - - raise BuildFlagsError.new(bf) if !bf.empty? - end + FormulaInstaller.prevent_build_flags unless MacOS.can_build? ARGV.formulae.each do |f| # head-only without --HEAD is an error |
