log4cxx - don't build docs by deafult

Fixes Homebrew/homebrew#3006
This commit is contained in:
Adam Vandenberg 2010-11-01 10:08:49 -07:00
parent af7c5d36d3
commit d1496da236

View file

@ -8,7 +8,9 @@ class Log4cxx < Formula
def install
fails_with_llvm "Fails with \"collect2: ld terminated with signal 11 [Segmentation fault]\"."
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
"--prefix=#{prefix}",
# Docs won't install on OS X
"--disable-doxygen"
system "make install"
end
end