Add mandir configuration option to the pwsafe build
The current formula doesn't tell pwsafe where to put the man pages, and as a result it appears that there are no man pages. Adding "--mandir=#{man}" (as in the formula-cookbook) fixes things right up. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
1b1e676e2b
commit
fa642ca001
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ class Pwsafe <Formula
|
|||
depends_on 'readline'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue