diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2006-10-30 19:02:01 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2006-10-30 19:02:01 +0000 |
commit | 3a5303bd9a486fcd700177ae4b85075d40b170bb (patch) | |
tree | 8c4c1a75b2ca3cf613f9faa32d21afd2ee2514cc /app-editors | |
parent | Fix libgpg-error dependency, thanks to Matthias Bethke, closes bug#153429 (diff) | |
download | gentoo-2-3a5303bd9a486fcd700177ae4b85075d40b170bb.tar.gz gentoo-2-3a5303bd9a486fcd700177ae4b85075d40b170bb.tar.bz2 gentoo-2-3a5303bd9a486fcd700177ae4b85075d40b170bb.zip |
suppressed the output of permission fixing, as reported by Carsten Lohrke <carlo@gentoo.org> in bug #85968
(Portage version: 2.1.1-r1)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/emacs/emacs-21.4-r5.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/app-editors/emacs/ChangeLog b/app-editors/emacs/ChangeLog index 2622dd39594c..7e42e432bf43 100644 --- a/app-editors/emacs/ChangeLog +++ b/app-editors/emacs/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/emacs # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.105 2006/10/15 08:48:43 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.106 2006/10/30 19:02:01 opfer Exp $ + + 30 Oct 2006; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r5.ebuild: + suppressed the output of permission fixing, as reported by Carsten Lohrke + <carlo@gentoo.org> in bug #85968 15 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> emacs-21.4-r4.ebuild: Stable on ia64. diff --git a/app-editors/emacs/emacs-21.4-r5.ebuild b/app-editors/emacs/emacs-21.4-r5.ebuild index 60bff59ceb89..f19d1e77d30d 100644 --- a/app-editors/emacs/emacs-21.4-r5.ebuild +++ b/app-editors/emacs/emacs-21.4-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r5.ebuild,v 1.2 2006/08/21 05:05:39 mkennedy Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/emacs-21.4-r5.ebuild,v 1.3 2006/10/30 19:02:01 opfer Exp $ inherit flag-o-matic eutils alternatives toolchain-funcs @@ -143,8 +143,8 @@ src_install() { done einfo "Fixing permissions..." - find ${D} -perm 664 |xargs chmod 644 - find ${D} -type d |xargs chmod 755 + find ${D} -perm 664 |xargs chmod -f 644 2>/dev/null + find ${D} -type d |xargs chmod -f 755 2>/dev/null keepdir /usr/share/emacs/${PV}/leim keepdir /usr/share/emacs/site-lisp |