Remove libiconv duplicate

Commit ee2c3ab ("Remove spurious libiconv dependencies") pruned all
existing "depends_on 'libiconv'" usages from Homebrew in preparation for
removing the libiconv dupe itself.

Now that is done, and we can remove and blacklist it. It can be obtained
from Homebrew-alt.

Closes Homebrew/homebrew#10464.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Camillo Lugaresi 2012-02-25 03:25:43 -06:00 committed by Jack Nagel
parent 6ded0d0cbb
commit c59be1a930
2 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,11 @@ def blacklisted? name
when 'libarchive', 'libpcap' then <<-EOS.undent when 'libarchive', 'libpcap' then <<-EOS.undent
Apple distributes #{name} with OS X, you can find it in /usr/lib. Apple distributes #{name} with OS X, you can find it in /usr/lib.
EOS 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 when 'libxml', 'libxlst' then <<-EOS.undent
Apple distributes #{name} with OS X, you can find it in /usr/lib. 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 However not all build scripts look for these hard enough, so you may need

View File

@ -340,7 +340,7 @@ def check_xcode_prefix
if prefix.to_s.match(' ') if prefix.to_s.match(' ')
<<-EOS.undent <<-EOS.undent
Xcode is installed to a directory with a space in the name. 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 EOS
end end
end end