diff options
author | 2007-09-16 02:20:05 +0000 | |
---|---|---|
committer | 2007-09-16 02:20:05 +0000 | |
commit | b22cece087b28d60fde4450549fe0d29505bc083 (patch) | |
tree | b7e5d303d33ae789c0b7d2e805bc779010a1e0c3 /eclass/font.eclass | |
parent | Do permission setting in ${D} rather than ${WORKDIR}. (diff) | |
download | historical-b22cece087b28d60fde4450549fe0d29505bc083.tar.gz historical-b22cece087b28d60fde4450549fe0d29505bc083.tar.bz2 historical-b22cece087b28d60fde4450549fe0d29505bc083.zip |
Forgot to remove -v flag from chmod.
Diffstat (limited to 'eclass/font.eclass')
-rw-r--r-- | eclass/font.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/font.eclass b/eclass/font.eclass index ab9de35ecf61..0c34d4ac135e 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.28 2007/09/16 02:18:04 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.29 2007/09/16 02:20:05 dirtyepic Exp $ # Author: foser <foser@gentoo.org> @@ -85,7 +85,7 @@ font_src_install() { for suffix in ${FONT_SUFFIX}; do doins *.${suffix} # ensure fonts are world readable to prevent fontconfig segfaults - chmod -v 0644 ${D}${FONTDIR}/*.${suffix} + chmod 0644 ${D}${FONTDIR}/*.${suffix} done rm -f fonts.{dir,scale} encodings.dir |