summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2009-02-08 18:22:39 +0000
committerPeter Volkov <pva@gentoo.org>2009-02-08 18:22:39 +0000
commit5fe411a6352807de4d5b83125f7ff41522614a56 (patch)
treea991f61acf56cf1df4d229d7b680e3b1228d13b8 /eclass/font.eclass
parentStable on alpha, bug #245861 (diff)
downloadhistorical-5fe411a6352807de4d5b83125f7ff41522614a56.tar.gz
historical-5fe411a6352807de4d5b83125f7ff41522614a56.tar.bz2
historical-5fe411a6352807de4d5b83125f7ff41522614a56.zip
Fixed unquoted variables, bug #258164, thank Markus Meier for report.
Diffstat (limited to 'eclass/font.eclass')
-rw-r--r--eclass/font.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass
index 247451488dc3..949039abc0e7 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.43 2009/01/12 22:54:46 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.44 2009/02/08 18:22:39 pva Exp $
# @ECLASS: font.eclass
# @MAINTAINER:
@@ -151,7 +151,7 @@ font_pkg_postinst() {
| xargs -0 chmod -v 0644 2>/dev/null
if has_version '>=media-libs/fontconfig-2.4'; then
- if [ ${ROOT} == "/" ]; then
+ if [[ ${ROOT} == "/" ]]; then
ebegin "Updating global fontcache"
fc-cache -fs
eend $?
@@ -168,7 +168,7 @@ font_pkg_postrm() {
| xargs -0 chmod -v 0644 2>/dev/null
if has_version '>=media-libs/fontconfig-2.4'; then
- if [ ${ROOT} == "/" ]; then
+ if [[ ${ROOT} == "/" ]]; then
ebegin "Updating global fontcache"
fc-cache -fs
eend $?