aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-05-25 20:09:05 -0700
committerAdam Vandenberg2011-05-25 20:09:05 -0700
commit1e8ff50ac9bfff848056f3bb7d049df295e453ff (patch)
tree7f7974d9e949f221f5fe16e451ad92606fe96a73 /Library
parent2d869486ddd9d5c3e706d78e12856e47613a2062 (diff)
downloadhomebrew-1e8ff50ac9bfff848056f3bb7d049df295e453ff.tar.bz2
magit: fix install paths
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/magit.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/magit.rb b/Library/Formula/magit.rb
index 43c9c7ea0..fcad52111 100644
--- a/Library/Formula/magit.rb
+++ b/Library/Formula/magit.rb
@@ -7,8 +7,6 @@ class Magit < Formula
head 'git://github.com/magit/magit.git'
def install
- system "./autogen.sh" if File.exist? "autogen.sh"
- system "./configure", "--prefix=#{prefix}"
- system "make install"
+ system "make install DESTDIR=#{prefix} PREFIX="
end
end