diff options
| author | Peter Aronoff | 2010-04-30 20:56:23 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2010-04-30 19:25:39 -0700 |
| commit | c6457286b54bb7602b5b82c1370c09a4a3c22c41 (patch) | |
| tree | bd62b0cb4146777531273457c9d932d59de7c77e /Library/Formula/pwsafe.rb | |
| parent | 7d7693e3a1aed9bae16a818de0d480916eda1ee4 (diff) | |
| download | homebrew-c6457286b54bb7602b5b82c1370c09a4a3c22c41.tar.bz2 | |
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>
Diffstat (limited to 'Library/Formula/pwsafe.rb')
| -rw-r--r-- | Library/Formula/pwsafe.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/pwsafe.rb b/Library/Formula/pwsafe.rb index bd252fb05..02d70fcf4 100644 --- a/Library/Formula/pwsafe.rb +++ b/Library/Formula/pwsafe.rb @@ -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 |
