Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: font.eclass
Date: Sun, 08 Feb 2009 18:22:40
Message-Id: E1LWEIh-0007SA-6C@stork.gentoo.org
1 pva 09/02/08 18:22:39
2
3 Modified: font.eclass
4 Log:
5 Fixed unquoted variables, bug #258164, thank Markus Meier for report.
6
7 Revision Changes Path
8 1.44 eclass/font.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.44&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.44&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?r1=1.43&r2=1.44
13
14 Index: font.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/font.eclass,v
17 retrieving revision 1.43
18 retrieving revision 1.44
19 diff -u -r1.43 -r1.44
20 --- font.eclass 12 Jan 2009 22:54:46 -0000 1.43
21 +++ font.eclass 8 Feb 2009 18:22:39 -0000 1.44
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.43 2009/01/12 22:54:46 maekke Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.44 2009/02/08 18:22:39 pva Exp $
27
28 # @ECLASS: font.eclass
29 # @MAINTAINER:
30 @@ -151,7 +151,7 @@
31 | xargs -0 chmod -v 0644 2>/dev/null
32
33 if has_version '>=media-libs/fontconfig-2.4'; then
34 - if [ ${ROOT} == "/" ]; then
35 + if [[ ${ROOT} == "/" ]]; then
36 ebegin "Updating global fontcache"
37 fc-cache -fs
38 eend $?
39 @@ -168,7 +168,7 @@
40 | xargs -0 chmod -v 0644 2>/dev/null
41
42 if has_version '>=media-libs/fontconfig-2.4'; then
43 - if [ ${ROOT} == "/" ]; then
44 + if [[ ${ROOT} == "/" ]]; then
45 ebegin "Updating global fontcache"
46 fc-cache -fs
47 eend $?