diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-12-10 23:58:17 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-12-10 23:58:17 +0000 |
commit | 33023f00d5d3e7733ff261a062f6255d18227c7c (patch) | |
tree | 3a6dcb03888c989e7e2ee78a157cc0e2498ac117 /eclass/font.eclass | |
parent | Stable on x86 wrt bug #201897 (diff) | |
download | gentoo-2-33023f00d5d3e7733ff261a062f6255d18227c7c.tar.gz gentoo-2-33023f00d5d3e7733ff261a062f6255d18227c7c.tar.bz2 gentoo-2-33023f00d5d3e7733ff261a062f6255d18227c7c.zip |
Misquoted FONT_CONF prevented use of multiple fontconfig files. Bug #201834 by pva.
Diffstat (limited to 'eclass/font.eclass')
-rw-r--r-- | eclass/font.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass index 052e15a3f2a1..3b37b8cdcc9d 100644 --- a/eclass/font.eclass +++ b/eclass/font.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.33 2007/09/19 02:48:20 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.34 2007/12/10 23:58:17 dirtyepic Exp $ # Author: foser <foser@gentoo.org> @@ -64,7 +64,7 @@ font_fontconfig() { if [[ -n ${FONT_CONF} ]]; then if has_version '>=media-libs/fontconfig-2.4'; then insinto /etc/fonts/conf.avail/ - for conffile in "${FONT_CONF}"; do + for conffile in ${FONT_CONF}; do [[ -e ${conffile} ]] && doins ${conffile} done fi |