diff options
author | 2004-10-06 14:00:39 +0000 | |
---|---|---|
committer | 2004-10-06 14:00:39 +0000 | |
commit | 8585c7066829090481f424c89eb84bae3d6fd01e (patch) | |
tree | 2b888c134689a745494105b265961b8e7d96d266 /eclass | |
parent | changes for boundschecking (diff) | |
download | historical-8585c7066829090481f424c89eb84bae3d6fd01e.tar.gz historical-8585c7066829090481f424c89eb84bae3d6fd01e.tar.bz2 historical-8585c7066829090481f424c89eb84bae3d6fd01e.zip |
s,/usr/bin/fc-cache,fc-cache, to support Mac OS X.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/font.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass index 2d00b26a3adf..e741f5f43b60 100644 --- a/eclass/font.eclass +++ b/eclass/font.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.8 2004/10/03 13:00:32 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.9 2004/10/06 14:00:39 usata Exp $ # Author: foser <foser@gentoo.org> @@ -57,7 +57,8 @@ font_xft_config() { # create fontconfig cache einfo "Creating fontconfig cache..." - HOME="/root" /usr/bin/fc-cache -f "${D}/usr/share/fonts/${PN}" + # Mac OS X has fc-cache at /usr/X11R6/bin + HOME="/root" fc-cache -f "${D}/usr/share/fonts/${PN}" } |