diff options
author | Ryan Hill <rhill@gentoo.org> | 2007-12-10 23:58:17 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2007-12-10 23:58:17 +0000 |
commit | f61cc0866022775124c106b1ad4c2796bba6368a (patch) | |
tree | d0115586ff5da6daa8b7502dde75c61500ab5b97 /eclass | |
parent | Stable on x86 wrt bug #201897 (diff) | |
download | historical-f61cc0866022775124c106b1ad4c2796bba6368a.tar.gz historical-f61cc0866022775124c106b1ad4c2796bba6368a.tar.bz2 historical-f61cc0866022775124c106b1ad4c2796bba6368a.zip |
Misquoted FONT_CONF prevented use of multiple fontconfig files. Bug #201834 by pva.
Diffstat (limited to '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 |