aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDominic Evans2010-09-19 16:14:14 +0100
committerAdam Vandenberg2010-09-19 08:49:22 -0700
commit7e45e881ddea6461ef341004daa4f4070dbc58df (patch)
tree379100ac5541782523c8913e98dc6663d30097d4
parent4d9ec25d08ef301b00affbec5d7ed46a273b3971 (diff)
downloadhomebrew-7e45e881ddea6461ef341004daa4f4070dbc58df.tar.bz2
Fix broken rtmpdump.rb install step.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-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 ce6685abf..e99a66349 100644
--- a/Library/Formula/rtmpdump.rb
+++ b/Library/Formula/rtmpdump.rb
@@ -13,7 +13,7 @@ class Rtmpdump <Formula
def install
ENV.j1
- system "make", "prefix=#{prefix}", "MANDIR=#{man}", "SYS=posix install"
+ system "make", "prefix=#{prefix}", "MANDIR=#{man}", "SYS=posix", "install"
end
end
__END__