diff options
author | Nicholas Jones <carpaski@gentoo.org> | 2004-09-12 00:55:16 +0000 |
---|---|---|
committer | Nicholas Jones <carpaski@gentoo.org> | 2004-09-12 00:55:16 +0000 |
commit | f24761b78b148c20ec71a38d10d8b92cb188569b (patch) | |
tree | 3b5542724583620d53acb28464e56f4dc3b5bdc0 | |
parent | Fix fPIC issue on alpha. (Manifest recommit) (diff) | |
download | gentoo-2-f24761b78b148c20ec71a38d10d8b92cb188569b.tar.gz gentoo-2-f24761b78b148c20ec71a38d10d8b92cb188569b.tar.bz2 gentoo-2-f24761b78b148c20ec71a38d10d8b92cb188569b.zip |
Fixed ebuild for chmod in nfs.
-rw-r--r-- | sys-apps/portage/portage-2.0.51_pre23.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/portage/portage-2.0.51_pre23.ebuild b/sys-apps/portage/portage-2.0.51_pre23.ebuild index 663721949a9c..f6f6afc93665 100644 --- a/sys-apps/portage/portage-2.0.51_pre23.ebuild +++ b/sys-apps/portage/portage-2.0.51_pre23.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.0.51_pre23.ebuild,v 1.1 2004/09/11 06:21:17 carpaski Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.0.51_pre23.ebuild,v 1.2 2004/09/12 00:55:16 carpaski Exp $ IUSE="build multilib selinux" @@ -332,7 +332,7 @@ pkg_postinst() { chmod 0664 "${ROOT}usr/portage/distfiles"/* find "${ROOT}usr/portage/distfiles" -type f -maxdepth 1 -print0 | \ - ${XARGS} -0 -n 500 chmod 0644 + ${XARGS} -0 -n 500 chmod 0644 &> /dev/null chmod 2775 "${ROOT}usr/portage/distfiles" chmod 2775 "${ROOT}usr/portage/distfiles/cvs-src" @@ -341,7 +341,7 @@ pkg_postinst() { chown -R root:portage "${ROOT}/${PORTDIR}/distfiles" find "${ROOT}/${PORTDIR}/distfiles" -type f -maxdepth 1 -print0 | \ - ${XARGS} -0 -n 500 chmod 0644 + ${XARGS} -0 -n 500 chmod 0644 &> /dev/null chmod 2775 "${ROOT}/${PORTDIR}/distfiles" chmod 2775 "${ROOT}/${PORTDIR}/distfiles/cvs-src" |