diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index 33758eccc6..d9f2dceb1c 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -6,6 +6,11 @@ def blacklisted? name when 'libarchive', 'libpcap' then <<-EOS.undent Apple distributes #{name} with OS X, you can find it in /usr/lib. EOS + when 'libiconv' then <<-EOS.undent + Apple distributes #{name} with OS X, you can find it in /usr/lib. + Some build scripts fail to detect it correctly, please check existing + formulae for solutions. + EOS when 'libxml', 'libxlst' then <<-EOS.undent Apple distributes #{name} with OS X, you can find it in /usr/lib. However not all build scripts look for these hard enough, so you may need diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 5e6b982c30..808b2db819 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -340,7 +340,7 @@ def check_xcode_prefix if prefix.to_s.match(' ') <<-EOS.undent Xcode is installed to a directory with a space in the name. - This will cause some formulae, such as libiconv, to fail to build. + This will cause some formulae to fail to build. EOS end end