From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1IWjpL-0004Q4-Ej for garchives@archives.gentoo.org; Sun, 16 Sep 2007 02:25:39 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.0/8.14.0) with SMTP id l8G2I6ha001063; Sun, 16 Sep 2007 02:18:06 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.0/8.14.0) with ESMTP id l8G2I5rJ001058 for ; Sun, 16 Sep 2007 02:18:06 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id A69FA65733 for ; Sun, 16 Sep 2007 02:18:05 +0000 (UTC) Received: from dirtyepic by stork.gentoo.org with local (Exim 4.60) (envelope-from ) id 1IWji0-0002l2-J1 for gentoo-commits@lists.gentoo.org; Sun, 16 Sep 2007 02:18:04 +0000 From: "Ryan Hill (dirtyepic)" To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: font.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: font.eclass X-VCS-Directories: eclass X-VCS-Committer: dirtyepic X-VCS-Committer-Name: Ryan Hill Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: Sender: Ryan Hill Date: Sun, 16 Sep 2007 02:18:04 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@gentoo.org Reply-To: gentoo-dev@lists.gentoo.org X-Archives-Salt: b76399dc-044a-42e2-b73e-e856a8adbfda X-Archives-Hash: 8617edfb21fdacf33cf4e9cb92f5c005 dirtyepic 07/09/16 02:18:04 Modified: font.eclass Log: Do permission setting in ${D} rather than ${WORKDIR}. Revision Changes Path 1.28 eclass/font.eclass file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.28&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?rev=1.28&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/font.eclass?r1=1.27&r2=1.28 Index: font.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/font.eclass,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- font.eclass 16 Aug 2007 00:54:11 -0000 1.27 +++ font.eclass 16 Sep 2007 02:18:04 -0000 1.28 @@ -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 @@ -83,9 +83,9 @@ 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 -- gentoo-commits@gentoo.org mailing list