aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-04-30 22:29:29 +0100
committerMike McQuaid2014-04-30 22:30:11 +0100
commit37c8e4b7015a6df0bb3c87e27b4f39265f9f9a3f (patch)
tree60cfbd1edfe5ea65ced145e04983aae1133d7ebe /Library/Formula
parente7b8dca62de6f0b343514bf6be8dce00e9357383 (diff)
downloadhomebrew-37c8e4b7015a6df0bb3c87e27b4f39265f9f9a3f.tar.bz2
qt: disable SSSE3 again.
Closes #28859.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/qt.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/qt.rb b/Library/Formula/qt.rb
index 0800b8695..e263ecc36 100644
--- a/Library/Formula/qt.rb
+++ b/Library/Formula/qt.rb
@@ -37,7 +37,7 @@ class Qt < Formula
# we have to disable these to avoid triggering optimization code
# that will fail in superenv (in --env=std, Qt seems aware of this)
- args << "-no-3dnow" if superenv?
+ args << "-no-3dnow" << "-no-ssse3" if superenv?
args << "-L#{MacOS::X11.lib}" << "-I#{MacOS::X11.include}" if MacOS::X11.installed?