aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-03-25 17:49:28 -0500
committerJack Nagel2014-03-25 17:52:27 -0500
commit9d8b4d1bef7b66a9c6c2ca1cc446a4cd8a879248 (patch)
tree003dd7a16a22c623ffafe0fa192e3275112dd8ff /Library/Formula
parent4aba0b123ec0a28ad4314797415737e58d28ced2 (diff)
downloadhomebrew-9d8b4d1bef7b66a9c6c2ca1cc446a4cd8a879248.tar.bz2
freetype: explicity disable harfbuzz
Harfbuzz depends on freetype. Homebrew can't and probably never will handle circular dependencies such as this.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/freetype.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/freetype.rb b/Library/Formula/freetype.rb
index 23e762c3d..2c6b7284d 100644
--- a/Library/Formula/freetype.rb
+++ b/Library/Formula/freetype.rb
@@ -21,7 +21,7 @@ class Freetype < Formula
def install
ENV.universal_binary if build.universal?
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}", "--without-harfbuzz"
system "make"
system "make", "install"
end