aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-03-14 19:37:19 -0500
committerJack Nagel2012-03-14 19:37:19 -0500
commit6fcaeb9639b4642bef3cf949e7d372bf70997642 (patch)
tree40dd77069073d2e66a60fe0951dd3abce0911aea /Library/Formula
parent683f143b5afbb838bb4b2e350875e4154fcdec37 (diff)
downloadhomebrew-6fcaeb9639b4642bef3cf949e7d372bf70997642.tar.bz2
gst-plugins-good: use the right compiler
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gst-plugins-good.rb14
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