aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-07-19 11:01:49 -0500
committerJack Nagel2013-07-19 11:01:49 -0500
commitcf66ef7d9743e870629359fba0b01fcca8687abf (patch)
treecb69342c684aa1e3d5005194b7854cad4a81e203 /Library
parent067b257ffe8d8c2ecbf423d3d31dbf882bdc5e04 (diff)
downloadhomebrew-cf66ef7d9743e870629359fba0b01fcca8687abf.tar.bz2
gd: fix universal build
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gd.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/gd.rb b/Library/Formula/gd.rb
index ac6eedad5..17bb90d5b 100644
--- a/Library/Formula/gd.rb
+++ b/Library/Formula/gd.rb
@@ -24,7 +24,7 @@ class Gd < Formula
def install
ENV.universal_binary if build.universal?
- args = ["--prefix=#{prefix}"]
+ args = %W{--disable-dependency-tracking --prefix=#{prefix}}
args << "--without-freetype" unless build.with? 'freetype'
system "./configure", *args
system "make install"