diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-16 02:20:05 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2007-09-16 02:20:05 +0000 |
commit | 7a7ec2dae3b2acb9118bc9d3ec6171f9944b8ced (patch) | |
tree | 0033521d5743c81dc73673bb895126d1c5eb5656 /eclass | |
parent | Do permission setting in ${D} rather than ${WORKDIR}. (diff) | |
download | gentoo-2-7a7ec2dae3b2acb9118bc9d3ec6171f9944b8ced.tar.gz gentoo-2-7a7ec2dae3b2acb9118bc9d3ec6171f9944b8ced.tar.bz2 gentoo-2-7a7ec2dae3b2acb9118bc9d3ec6171f9944b8ced.zip |
Forgot to remove -v flag from chmod.
Diffstat (limited to '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 |