aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorXu Cheng2016-01-09 18:59:34 +0800
committerXu Cheng2016-01-09 20:28:15 +0800
commit885022a5e3003e6beff467033983551089726141 (patch)
treeb53e3200a5cfb2136eb6be003b2cac339ee8da98 /Library/Homebrew/cmd
parentf0b22c4ce3beeb0abd242df4ab837cb533788247 (diff)
downloadbrew-885022a5e3003e6beff467033983551089726141.tar.bz2
add Keg#empty_installation?
Avoid using `FormulaAuditor` in `FormulaInstaller`. Closes Homebrew/homebrew#47887. Signed-off-by: Xu Cheng <xucheng@me.com>
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/audit.rb18
1 files changed, 6 insertions, 12 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index f881105a1..3750eaf25 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -883,19 +883,13 @@ class FormulaAuditor
def audit_prefix_has_contents
return unless formula.prefix.directory?
- Pathname.glob("#{formula.prefix}/**/*") do |file|
- next if file.directory?
- basename = file.basename.to_s
- next if Metafiles.copy?(basename)
- next if %w[.DS_Store INSTALL_RECEIPT.json].include?(basename)
- return
+ if Keg.new(formula.prefix).empty_installation?
+ problem <<-EOS.undent
+ The installation seems to be empty. Please ensure the prefix
+ is set correctly and expected files are installed.
+ The prefix configure/make argument may be case-sensitive.
+ EOS
end
-
- problem <<-EOS.undent
- The installation seems to be empty. Please ensure the prefix
- is set correctly and expected files are installed.
- The prefix configure/make argument may be case-sensitive.
- EOS
end
def audit_conditional_dep(dep, condition, line)