Skip to content
Snippets Groups Projects
Commit 9ca23381 authored by Adam Vandenberg's avatar Adam Vandenberg
Browse files

List offending jar files when installed to lib

parent 42d44053
No related branches found
No related tags found
No related merge requests found
......@@ -250,15 +250,17 @@ class FormulaInstaller
end
def check_jars
# Check for Jars in lib
return unless File.exist? f.lib
unless f.lib.children.select{|g| g.to_s =~ /\.jar$/}.empty?
jars = f.lib.children.select{|g| g.to_s =~ /\.jar$/}
unless jars.empty?
opoo 'JARs were installed to "lib".'
puts "Installing JARs to \"lib\" can cause conflicts between packages."
puts "For Java software, it is typically better for the formula to"
puts "install to \"libexec\" and then symlink or wrap binaries into \"bin\"."
puts "See \"activemq\", \"jruby\", etc. for examples."
puts "The offending files are:"
puts jars
@show_summary_heading = true
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment