aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-03-17 15:29:35 -0700
committerAdam Vandenberg2010-03-17 15:33:37 -0700
commit9cf78450156a01ed2862d3fadc3caf34758459ad (patch)
treef8a900784939f03b09912028346ab9db47b86f81 /Library
parent3825535310233ffe75eff39839d4f391940731e3 (diff)
downloadbrew-9cf78450156a01ed2862d3fadc3caf34758459ad.tar.bz2
Bug fix: gcc_4_0_1 wasn't removing sse4 flags correctly.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/ENV.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index d35bf22a5..0e37b9f17 100644
--- a/Library/Homebrew/extend/ENV.rb
+++ b/Library/Homebrew/extend/ENV.rb
@@ -105,7 +105,7 @@ module HomebrewEnvExtension
self['CXX'] = '/usr/bin/g++-4.0'
self.O3
remove_from_cflags '-march=core2'
- remove_from_cflags %r{-msse4(\.\d)?/}
+ remove_from_cflags %r{-msse4(\.\d)?}
end
alias_method :gcc_4_0, :gcc_4_0_1