diff options
| author | Martin Kühl | 2010-03-06 20:14:17 +0100 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-03-09 09:04:20 -0800 | 
| commit | 764d89e6c13b66fbe8e9ea8d58f88ccb4f0db8a4 (patch) | |
| tree | 3f8ebde97143abf476587c355bbddae677f9335e /Library/Formula/libvorbis.rb | |
| parent | 07f13ea57e28353de5b40d0498948e2e708b781e (diff) | |
| download | homebrew-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.rb | 3 | 
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  | 
