diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-05 02:07:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-03-05 02:07:11 +0000 |
commit | 213f9089e95e40861f6cca7e6ea3b2d9d332ba28 (patch) | |
tree | c5cf00260ce74702dcb235538946ee7c97405b7a /eclass/games.eclass | |
parent | Version bump (diff) | |
download | historical-213f9089e95e40861f6cca7e6ea3b2d9d332ba28.tar.gz historical-213f9089e95e40861f6cca7e6ea3b2d9d332ba28.tar.bz2 historical-213f9089e95e40861f6cca7e6ea3b2d9d332ba28.zip |
do not dereference symlinks in prepgamesdirs() when changing owners #261196
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index fb5f4ade3ae5..1abf37e95213 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.133 2009/03/04 02:03:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.134 2009/03/05 02:07:11 vapier Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -80,7 +80,7 @@ prepgamesdirs() { do [[ ! -d ${D}/${dir} ]] && continue ( - gamesowners -R "${D}/${dir}" + gamesowners -h -R "${D}/${dir}" find "${D}/${dir}" -type d -print0 | xargs -0 chmod 750 mode=o-rwx,g+r,g-w [[ ${dir} = ${GAMES_STATEDIR} ]] && mode=o-rwx,g+r |