aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-02-03 13:40:24 +0100
committerDavid Höppner2010-02-03 13:40:24 +0100
commitc72ff6715baf09b63caa103f0bec97ae98258e4a (patch)
treebc9da324d78953c8e6f85361fc79adbbbf30cbe3 /Library/Formula
parent756fc967c4c2816fa218fa2e7f742cbe47b46d27 (diff)
downloadhomebrew-c72ff6715baf09b63caa103f0bec97ae98258e4a.tar.bz2
discount: correct man path
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/discount.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/discount.rb b/Library/Formula/discount.rb
index 5f55b7ca5..4903fea04 100644
--- a/Library/Formula/discount.rb
+++ b/Library/Formula/discount.rb
@@ -6,11 +6,10 @@ class Discount <Formula
md5 'b7a4900bedd2d75147b0b708fb6e16ed'
def install
- system "./configure.sh", "--prefix=#{prefix}"
- system "make"
- system "mkdir -p #{prefix}/bin"
- system "mkdir -p #{prefix}/lib"
- system "mkdir -p #{prefix}/include"
- system "make install"
+ system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{share}"
+ bin.mkdir
+ lib.mkdir
+ include.mkdir
+ system "make install.everything"
end
end