diff options
| author | Ricardo Oliveira | 2012-03-16 02:15:30 +0000 |
|---|---|---|
| committer | Jack Nagel | 2012-03-15 21:35:12 -0500 |
| commit | 50b8f54b93e26400d0d83250df6153759cd56061 (patch) | |
| tree | d7fcd8b3684dc7f4a2525ad5d2ca8b58d6407372 /Library/Formula | |
| parent | f5fe0eb35597ead6546cd23e8ed8643c259f999d (diff) | |
| download | homebrew-50b8f54b93e26400d0d83250df6153759cd56061.tar.bz2 | |
gst-plugins-bad: use the right compiler
Closes #10973.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gst-plugins-bad.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Library/Formula/gst-plugins-bad.rb b/Library/Formula/gst-plugins-bad.rb index 4243b3f15..6e702157a 100644 --- a/Library/Formula/gst-plugins-bad.rb +++ b/Library/Formula/gst-plugins-bad.rb @@ -25,8 +25,11 @@ class GstPluginsBad < Formula def install ENV.append "CFLAGS", "-no-cpp-precomp -funroll-loops -fstrict-aliasing" - system "./configure", "--prefix=#{prefix}", "--disable-debug", - "--disable-dependency-tracking", "--disable-sdl" + ENV['OBJC'] = ENV.cc + system "./configure", "--prefix=#{prefix}", + "--disable-debug", + "--disable-dependency-tracking", + "--disable-sdl" system "make" system "make install" end |
