aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-11-01 10:08:49 -0700
committerAdam Vandenberg2010-11-01 10:09:10 -0700
commitcb6ea3656269a63d66920159d2978f920619ba85 (patch)
tree80af9e12cdaedc27e23162173ea15218f4ead20d /Library
parent25a2807573f04bd94a2e6385f982c4a03a45e0aa (diff)
downloadhomebrew-cb6ea3656269a63d66920159d2978f920619ba85.tar.bz2
log4cxx - don't build docs by deafult
Fixes #3006
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/log4cxx.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/log4cxx.rb b/Library/Formula/log4cxx.rb
index c358c00c4..2bc14db4c 100644
--- a/Library/Formula/log4cxx.rb
+++ b/Library/Formula/log4cxx.rb
@@ -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