aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2009-12-31 02:12:50 +0000
committerMax Howell2009-12-31 02:12:50 +0000
commit4de4887df79e008640a5588ce9a5e4382edc3a4d (patch)
treee6e405581013983ea9e2ba68e0915bc1d95f937a /Library/Formula
parent4271011c2f1972b9e2b336adfa1f2e2b469aa4fc (diff)
downloadhomebrew-4de4887df79e008640a5588ce9a5e4382edc3a4d.tar.bz2
Fix stupid programming error in mplayer formula
Fixes #278
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mplayer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/mplayer.rb b/Library/Formula/mplayer.rb
index 1087840c1..4c9598afe 100644
--- a/Library/Formula/mplayer.rb
+++ b/Library/Formula/mplayer.rb
@@ -15,7 +15,7 @@ class Mplayer <Formula
ENV['CC'] = ''
ENV['LD'] = ''
# any kind of optimisation breaks the build
- ENV['CFLAGS'] = HOMEBREW_SAFE_CFLAGS
+ ENV['CFLAGS'] = '-w -pipe'
args = ['./configure', "--prefix=#{prefix}"]
args << "--target=x86_64-Darwin" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6