diff options
author | Ryan Hill <rhill@gentoo.org> | 2007-09-16 02:18:04 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2007-09-16 02:18:04 +0000 |
commit | 9efe1a8c2428bc350daee20d51a93d02cbcfeedf (patch) | |
tree | b9455b3ae70ab89e8990f568032c91e542f25c16 /eclass/font.eclass | |
parent | new ebuild per bug #183736 (diff) | |
download | historical-9efe1a8c2428bc350daee20d51a93d02cbcfeedf.tar.gz historical-9efe1a8c2428bc350daee20d51a93d02cbcfeedf.tar.bz2 historical-9efe1a8c2428bc350daee20d51a93d02cbcfeedf.zip |
Do permission setting in ${D} rather than ${WORKDIR}.
Diffstat (limited to 'eclass/font.eclass')
-rw-r--r-- | eclass/font.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass index 9fbbe37aa086..ab9de35ecf61 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.27 2007/08/16 00:54:11 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.28 2007/09/16 02:18:04 dirtyepic Exp $ # Author: foser <foser@gentoo.org> @@ -83,9 +83,9 @@ font_src_install() { insinto "${FONTDIR}" for suffix in ${FONT_SUFFIX}; do - # ensure fonts are world readable to prevent fontconfig segfaults - chmod 0644 *.${suffix} doins *.${suffix} + # ensure fonts are world readable to prevent fontconfig segfaults + chmod -v 0644 ${D}${FONTDIR}/*.${suffix} done rm -f fonts.{dir,scale} encodings.dir |