aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXidorn Quan2012-10-30 19:36:02 +0800
committerMike McQuaid2012-10-30 12:13:39 +0000
commitb2428838e5b1e1f2139923b06ba9d3ef4f2b5e66 (patch)
tree98e57cdf96f3ef76acf90cb10c7ba704f7263b54 /Library
parent38f121bd68b3ad11a9a3f0fb801ccb185f9999df (diff)
downloadhomebrew-b2428838e5b1e1f2139923b06ba9d3ef4f2b5e66.tar.bz2
fontconfig: add font dirs in Library to config
Fontconfig does not cache fonts in /Library/Fonts and ~/Library/Fonts. The patch fixes this. Closes #15745. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/fontconfig.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/fontconfig.rb b/Library/Formula/fontconfig.rb
index 73ef5a3c3..4c763e68d 100644
--- a/Library/Formula/fontconfig.rb
+++ b/Library/Formula/fontconfig.rb
@@ -19,7 +19,7 @@ class Fontconfig < Formula
def install
ENV.universal_binary if build.universal?
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--with-add-fonts=/Library/Fonts,~/Library/Fonts", "--prefix=#{prefix}"
system "make install"
end
end