aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-05-19 12:44:54 -0500
committerJack Nagel2014-05-19 12:45:00 -0500
commit3456f12c337d2ea849e3465bd6840685173805c2 (patch)
treea3da27990e1ede3c71c965a8fd76937a9fef5a11 /Library/Formula
parentb4a44c0d56ecf1d4a2ad274368d1886530a9b9c9 (diff)
downloadhomebrew-3456f12c337d2ea849e3465bd6840685173805c2.tar.bz2
pixman: enable MMX with clang
This was fixed two years ago in pixman.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pixman.rb14
1 files changed, 5 insertions, 9 deletions
diff --git a/Library/Formula/pixman.rb b/Library/Formula/pixman.rb
index 500508f82..a0d16495f 100644
--- a/Library/Formula/pixman.rb
+++ b/Library/Formula/pixman.rb
@@ -30,14 +30,10 @@ class Pixman < Formula
def install
ENV.universal_binary if build.universal?
- # Disable gtk as it is only used to build tests
- args = %W[--disable-dependency-tracking
- --disable-gtk
- --prefix=#{prefix}]
-
- args << "--disable-mmx" if ENV.compiler == :clang
-
- system "./configure", *args
- system "make install"
+ system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
+ "--prefix=#{prefix}",
+ "--disable-gtk"
+ system "make", "install"
end
end