Fixes broken SubversionDownloadStrategy

Being able to commit parts of diffs can bite you if you aren't careful.
master
Max Howell 2009-12-04 17:44:18 +00:00
parent fcfb4ddc60
commit 5e0b7baf1a
1 changed files with 10 additions and 2 deletions

View File

@ -11,8 +11,16 @@ class Mplayer <Formula
def install
ENV.gcc_4_2 # llvm chokes on labels within mlp inline asm
system "./configure --prefix='#{prefix}'"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
end
if MACOS_VERSION < 10.6
class SubversionDownloadStrategy
def svn
Formula.factory('subversion').bin+'svn'
end
end
end