diff options
| author | Jack Nagel | 2012-03-14 19:37:19 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-03-14 19:37:19 -0500 |
| commit | 6fcaeb9639b4642bef3cf949e7d372bf70997642 (patch) | |
| tree | 40dd77069073d2e66a60fe0951dd3abce0911aea /Library | |
| parent | 683f143b5afbb838bb4b2e350875e4154fcdec37 (diff) | |
| download | homebrew-6fcaeb9639b4642bef3cf949e7d372bf70997642.tar.bz2 | |
gst-plugins-good: use the right compiler
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gst-plugins-good.rb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Library/Formula/gst-plugins-good.rb b/Library/Formula/gst-plugins-good.rb index f1fa81470..07bd81431 100644 --- a/Library/Formula/gst-plugins-good.rb +++ b/Library/Formula/gst-plugins-good.rb @@ -26,12 +26,14 @@ class GstPluginsGood < Formula depends_on 'taglib' => :optional def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--disable-schemas-install", - "--disable-gtk-doc", - "--disable-goom", - "--with-default-videosink=ximagesink" + ENV['OBJC'] = ENV.cc + system "./configure", "--disable-debug", + "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--disable-schemas-install", + "--disable-gtk-doc", + "--disable-goom", + "--with-default-videosink=ximagesink" system "make" system "make install" end |
