aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMisty De Meo2012-08-17 08:28:55 -0500
committerMisty De Meo2012-08-17 08:28:55 -0500
commit74a63bed548ff0c922ef19da94eaf528b299d55d (patch)
treea0606baf7657870823aa85759ed15408739e4e76 /Library
parentaed63fe8161ed7b417d2aef14b7b13fccb2943d4 (diff)
downloadhomebrew-74a63bed548ff0c922ef19da94eaf528b299d55d.tar.bz2
texi2html: specify mandir and infodir
Missed these since the warnings are not printed on a keg-only install.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/texi2html.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Formula/texi2html.rb b/Library/Formula/texi2html.rb
index 485b35a9f..701a9ed42 100644
--- a/Library/Formula/texi2html.rb
+++ b/Library/Formula/texi2html.rb
@@ -8,10 +8,8 @@ class Texi2html < Formula
keg_only :provided_by_osx unless MacOS.mountain_lion?
def install
- # The install-sh, used if ginstall is not present, isn't executable!
- chmod 0744, "install-sh"
-
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}",
+ "--mandir=#{man}", "--infodir=#{info}"
system "make install"
end