Remove m4 macro warning.

Fixes Homebrew/homebrew#15956.
This commit is contained in:
Mike McQuaid 2012-11-12 20:17:30 +00:00
parent bce7dedb6a
commit c6a8dd247e

View File

@ -157,7 +157,6 @@ class FormulaInstaller
audit_lib audit_lib
check_manpages check_manpages
check_infopages check_infopages
check_m4
end end
keg = Keg.new(f.prefix) keg = Keg.new(f.prefix)
@ -437,25 +436,6 @@ class FormulaInstaller
check_jars check_jars
check_non_libraries check_non_libraries
end end
def check_m4
# Newer versions of Xcode don't come with autotools
return unless MacOS::Xcode.provides_autotools?
# If the user has added our path to dirlist, don't complain
return if File.open("/usr/share/aclocal/dirlist") do |dirlist|
dirlist.grep(%r{^#{HOMEBREW_PREFIX}/share/aclocal$}).length > 0
end rescue false
# Check for installed m4 files
if Dir[f.share+"aclocal/*.m4"].length > 0
opoo 'm4 macros were installed to "share/aclocal".'
puts "Homebrew does not append \"#{HOMEBREW_PREFIX}/share/aclocal\""
puts "to \"/usr/share/aclocal/dirlist\". If an autoconf script you use"
puts "requires these m4 macros, you'll need to add this path manually."
@show_summary_heading = true
end
end
end end