texi2html: specify mandir and infodir

Missed these since the warnings are not printed on a keg-only install.
This commit is contained in:
Misty De Meo 2012-08-17 08:28:55 -05:00
parent ccb80fcc85
commit 5aaf5e7d35

View file

@ -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