diff options
| author | Max Howell | 2009-12-04 17:44:18 +0000 |
|---|---|---|
| committer | Max Howell | 2009-12-04 18:16:32 +0000 |
| commit | cbd7ff972c52ebcbe87f03040fa606b1b2c1c706 (patch) | |
| tree | 0d4a00b8edff82d31ce859b0e08ad6c3f20ffeaa /Library/Formula | |
| parent | 928317d80f67d7cbc73bfa4f04bcd1e4e6cdf980 (diff) | |
| download | homebrew-cbd7ff972c52ebcbe87f03040fa606b1b2c1c706.tar.bz2 | |
Fixes broken SubversionDownloadStrategy
Being able to commit parts of diffs can bite you if you aren't careful.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mplayer.rb | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Library/Formula/mplayer.rb b/Library/Formula/mplayer.rb index 850bb0de1..5e6b99e23 100644 --- a/Library/Formula/mplayer.rb +++ b/Library/Formula/mplayer.rb @@ -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
\ No newline at end of file +end + +if MACOS_VERSION < 10.6 + class SubversionDownloadStrategy + def svn + Formula.factory('subversion').bin+'svn' + end + end +end |
