diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2009-10-31 23:08:25 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2009-10-31 23:08:25 +0000 |
commit | 6ed7da9783e35f88c78268fd56eada475b7e931f (patch) | |
tree | feb1d103ed0cbcfa3239bf085162a7817a19a088 | |
parent | New version for GNOME 2.28. (diff) | |
download | gentoo-2-6ed7da9783e35f88c78268fd56eada475b7e931f.tar.gz gentoo-2-6ed7da9783e35f88c78268fd56eada475b7e931f.tar.bz2 gentoo-2-6ed7da9783e35f88c78268fd56eada475b7e931f.zip |
Existence of fonts.alias files prevented removal of otherwise empty font directories. Bug #249190 by Martin Väth.
-rw-r--r-- | eclass/x-modular.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 35c8fda8de46..9db122e5b8e9 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.115 2009/10/27 15:16:17 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.116 2009/10/31 23:08:25 dirtyepic Exp $ # # @ECLASS: x-modular.eclass # @MAINTAINER: @@ -516,7 +516,7 @@ x-modular_pkg_postrm() { # @DESCRIPTION: # Get rid of font directories that only contain generated files cleanup_fonts() { - local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" + local ALLOWED_FILES="encodings.dir fonts.alias fonts.cache-1 fonts.dir fonts.scale" for DIR in ${FONT_DIR}; do unset KEEP_FONTDIR REAL_DIR=${ROOT}usr/share/fonts/${DIR} |