aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-16 10:19:08 -0700
committerAdam Vandenberg2010-07-16 10:19:08 -0700
commit7aea57be68303c71320ba7478a7c8d5512337d97 (patch)
tree9a7c901b7fb360cd70cfefd35aa1da69d9046560 /Library
parent0fe5b3be1099295478a192dba921c66057d654e4 (diff)
downloadhomebrew-7aea57be68303c71320ba7478a7c8d5512337d97.tar.bz2
Fix man path for pth
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pth.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/pth.rb b/Library/Formula/pth.rb
index 6ff7a6bf8..47d9bb83d 100644
--- a/Library/Formula/pth.rb
+++ b/Library/Formula/pth.rb
@@ -7,11 +7,10 @@ class Pth <Formula
def install
ENV.deparallelize
- system "./configure",
- "--prefix=#{prefix}",
-# Shared library will not be build with disable debug
-# "--disable-debug",
- "--disable-dependency-tracking"
+ # Note: shared library will not be build with --disable-debug, so don't add that flag
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make install"
end
end