aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvorbis.rb
diff options
context:
space:
mode:
authorMartin Kühl2010-03-06 20:14:17 +0100
committerAdam Vandenberg2010-03-09 09:04:20 -0800
commit764d89e6c13b66fbe8e9ea8d58f88ccb4f0db8a4 (patch)
tree3f8ebde97143abf476587c355bbddae677f9335e /Library/Formula/libvorbis.rb
parent07f13ea57e28353de5b40d0498948e2e708b781e (diff)
downloadhomebrew-764d89e6c13b66fbe8e9ea8d58f88ccb4f0db8a4.tar.bz2
Disable pdf generation in the `libvorbis` formula.
The pdf generation fails (with a default working MacTeX installation) while in interactive mode, hanging the `brew install` process. The HTML docs are still getting installed. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libvorbis.rb')
-rw-r--r--Library/Formula/libvorbis.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/libvorbis.rb b/Library/Formula/libvorbis.rb
index 3d40d6c5e..18523885f 100644
--- a/Library/Formula/libvorbis.rb
+++ b/Library/Formula/libvorbis.rb
@@ -9,8 +9,7 @@ class Libvorbis <Formula
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug",
- "--disable-dependency-tracking",
- "--enable-docs"
+ "--disable-dependency-tracking"
system "make install"
end
end