aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-07-16 20:50:34 -0700
committerAdam Vandenberg2013-07-16 20:50:45 -0700
commit3a95572c766b1abbd107a7b85f6b74bb3cf44a83 (patch)
tree11ddc7133e589799b0c7e10d0f7f0d147f9c122f /Library
parentb398e272b377517de8edaa86aa5a3cbb591442b4 (diff)
downloadhomebrew-3a95572c766b1abbd107a7b85f6b74bb3cf44a83.tar.bz2
add full lib path to audit
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_cellar_checks.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb
index c82b7acab..fc8d2be5e 100644
--- a/Library/Homebrew/formula_cellar_checks.rb
+++ b/Library/Homebrew/formula_cellar_checks.rb
@@ -41,7 +41,7 @@ module FormulaCellarChecks
jars = f.lib.children.select{|g| g.to_s =~ /\.jar$/}
return if jars.empty?
- ['JARs were installed to "lib".',
+ ["JARs were installed to \"#{f.lib}\".",
<<-EOS.undent
Installing JARs to "lib" can cause conflicts between packages.
For Java software, it is typically better for the formula to
@@ -64,7 +64,7 @@ module FormulaCellarChecks
end
return if non_libraries.empty?
- ['Non-libraries were installed to "lib".',
+ ["Non-libraries were installed to \"#{f.lib}\".",
<<-EOS.undent
Installing non-libraries to "lib" is bad practice.
The offending files are: