Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: font.eclass
Date: Mon, 10 Dec 2007 23:58:25
Message-Id: E1J1sVu-0002Uv-24@stork.gentoo.org
1 dirtyepic 07/12/10 23:58:18
2
3 Modified: font.eclass
4 Log:
5 Misquoted FONT_CONF prevented use of multiple fontconfig files. Bug #201834 by pva.
6
7 Revision Changes Path
8 1.34 eclass/font.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.34&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.34&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?r1=1.33&r2=1.34
13
14 Index: font.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/font.eclass,v
17 retrieving revision 1.33
18 retrieving revision 1.34
19 diff -u -r1.33 -r1.34
20 --- font.eclass 19 Sep 2007 02:48:20 -0000 1.33
21 +++ font.eclass 10 Dec 2007 23:58:17 -0000 1.34
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2007 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.33 2007/09/19 02:48:20 dirtyepic Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.34 2007/12/10 23:58:17 dirtyepic Exp $
27
28 # Author: foser <foser@g.o>
29
30 @@ -64,7 +64,7 @@
31 if [[ -n ${FONT_CONF} ]]; then
32 if has_version '>=media-libs/fontconfig-2.4'; then
33 insinto /etc/fonts/conf.avail/
34 - for conffile in "${FONT_CONF}"; do
35 + for conffile in ${FONT_CONF}; do
36 [[ -e ${conffile} ]] && doins ${conffile}
37 done
38 fi
39
40
41
42 --
43 gentoo-commits@g.o mailing list