aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJonathon L Duckworth2010-10-22 14:39:18 -0400
committerAdam Vandenberg2010-10-22 13:52:36 -0700
commita5da2309e337cc747860e1a3e82f731e0e1835ef (patch)
treedd9599f74081445ab0c7aafd92b5784b71e0f0d2 /Library
parent638998e16a2b284f5ddb8ae8507a2edab2abb3f3 (diff)
downloadhomebrew-a5da2309e337cc747860e1a3e82f731e0e1835ef.tar.bz2
set correct mandir for xpdf
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/xpdf.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/xpdf.rb b/Library/Formula/xpdf.rb
index 950875b37..20613f30f 100644
--- a/Library/Formula/xpdf.rb
+++ b/Library/Formula/xpdf.rb
@@ -15,8 +15,10 @@ class Xpdf <Formula
end
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make"
system "make install"
end
-end \ No newline at end of file
+end