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 | 1cf7c0e0291ce8f5c254c424e456ffc237ba404e (patch) | |
tree | 6580147a40f226a44967900734689f7b0e269ba0 /eclass/games.eclass | |
parent | Version bump (diff) | |
download | gentoo-2-1cf7c0e0291ce8f5c254c424e456ffc237ba404e.tar.gz gentoo-2-1cf7c0e0291ce8f5c254c424e456ffc237ba404e.tar.bz2 gentoo-2-1cf7c0e0291ce8f5c254c424e456ffc237ba404e.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 |