aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-30 14:58:22 -0700
committerAdam Vandenberg2010-07-30 14:58:22 -0700
commite21811c41b320d3fafdcbd6dd6681d143befbda5 (patch)
tree90bad3bf20631de42adf70371471f77e1c9314e0
parenta6fcba2ef6d3fa113a295858d00dfdc69cfca1e1 (diff)
downloadhomebrew-e21811c41b320d3fafdcbd6dd6681d143befbda5.tar.bz2
rtmp - fix prefix
-rw-r--r--Library/Formula/rtmpdump.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/rtmpdump.rb b/Library/Formula/rtmpdump.rb
index fb7db014f..9bc946a22 100644
--- a/Library/Formula/rtmpdump.rb
+++ b/Library/Formula/rtmpdump.rb
@@ -12,7 +12,7 @@ class Rtmpdump <Formula
def install
ENV.j1
- system "make DESTDIR=#{prefix} MANDIR=#{man} SYS=posix install"
+ system "make prefix=#{prefix} MANDIR=#{man} SYS=posix install"
end
end
__END__