diff options
author | Peter Volkov <pva@gentoo.org> | 2009-07-24 13:32:44 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2009-07-24 13:32:44 +0000 |
commit | 161ce47c00e3cb54dffbb8c3a40f4e05e294d602 (patch) | |
tree | 92b2ade31ee8708501be4449e1937bb6438e3630 /eclass/x-modular.eclass | |
parent | Fix baking (diff) | |
download | gentoo-2-161ce47c00e3cb54dffbb8c3a40f4e05e294d602.tar.gz gentoo-2-161ce47c00e3cb54dffbb8c3a40f4e05e294d602.tar.bz2 gentoo-2-161ce47c00e3cb54dffbb8c3a40f4e05e294d602.zip |
x-modular.eclass: Added workaround for bug #278221: fc-cache in fontconfig 2.7.0 do chmod. Should be dropped after X fonts will be patched to avoid fc-cache run during make install.
Diffstat (limited to 'eclass/x-modular.eclass')
-rw-r--r-- | eclass/x-modular.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 04e9a1c40ee4..12b832c3ad21 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.109 2009/05/14 12:40:55 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.110 2009/07/24 13:32:44 pva Exp $ # # @ECLASS: x-modular.eclass # @MAINTAINER: @@ -436,6 +436,8 @@ x-modular_src_install() { install \ || die else + # FIXME: Drop after X fonts stop running fc-cache during install, bug #278221 + [[ -n ${FONT} ]] && addpredict /var/cache/fontconfig make \ DESTDIR="${D}" \ install \ |