diff options
| author | Jack Nagel | 2014-03-25 17:49:28 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-03-25 17:52:27 -0500 |
| commit | 9d8b4d1bef7b66a9c6c2ca1cc446a4cd8a879248 (patch) | |
| tree | 003dd7a16a22c623ffafe0fa192e3275112dd8ff /Library/Formula | |
| parent | 4aba0b123ec0a28ad4314797415737e58d28ced2 (diff) | |
| download | homebrew-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.rb | 2 |
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 |
