diff options
| author | Jack Nagel | 2012-02-09 12:26:12 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-09 12:26:12 -0600 |
| commit | 28949854affc7c44a37f84d05f29fb7a846c1ab3 (patch) | |
| tree | 673b6db079ce47d76e0758ed4dd7d70bbed05968 /Library/Formula/tig.rb | |
| parent | 3b5f851251c3cfb5ba5b619845895904d33a608a (diff) | |
| download | homebrew-28949854affc7c44a37f84d05f29fb7a846c1ab3.tar.bz2 | |
tig: manually install html docs
The 'install-doc-html' Makefile target invokes asciidoc even though
the html docs are prebuilt; manually install them to avoid a useless
dependency on asciidoc.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/tig.rb')
| -rw-r--r-- | Library/Formula/tig.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/tig.rb b/Library/Formula/tig.rb index e1a74a04d..2d02e2a90 100644 --- a/Library/Formula/tig.rb +++ b/Library/Formula/tig.rb @@ -9,8 +9,8 @@ class Tig < Formula system "./configure", "--prefix=#{prefix}" system "make install" system "make install-doc-man" - system "make install-doc-html" + doc.install Dir['*.html'] (prefix+'etc/bash_completion.d').install 'contrib/tig-completion.bash' end end |
