diff options
| author | Adam Vandenberg | 2010-02-11 10:17:48 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-02-11 10:17:48 -0800 | 
| commit | 4cbfcf3fe5d7be0b44f17bcee5a3464f60d3e9b2 (patch) | |
| tree | 27c2a71b8766583f0de98600e32e244874367de1 /Library/Formula/htmldoc.rb | |
| parent | 412c0fb8c7216d8b040179009dff3c7488dd1fc5 (diff) | |
| download | homebrew-4cbfcf3fe5d7be0b44f17bcee5a3464f60d3e9b2.tar.bz2 | |
Htmldoc - fix man path.
Diffstat (limited to 'Library/Formula/htmldoc.rb')
| -rw-r--r-- | Library/Formula/htmldoc.rb | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/Library/Formula/htmldoc.rb b/Library/Formula/htmldoc.rb index ff0565b02..cf395b1d3 100644 --- a/Library/Formula/htmldoc.rb +++ b/Library/Formula/htmldoc.rb @@ -6,7 +6,8 @@ class Htmldoc <Formula    md5 '35589e7b8fe9c54e11be87cd5aec4dcc'    def install -    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" +    system "./configure", "--disable-debug", "--disable-dependency-tracking", +                          "--prefix=#{prefix}", "--mandir=#{man}"      system "make install"    end  end | 
