diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-14 14:18:13 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-06-14 14:18:13 +0000 |
commit | d08359306bd4e034ca0f66c25dd4e407e6b98d02 (patch) | |
tree | 9404cd584c3bdc1210163a7aa64f3fcf7cee54ab /eclass | |
parent | hppa KEYWORDS (Manifest recommit) (diff) | |
download | gentoo-2-d08359306bd4e034ca0f66c25dd4e407e6b98d02.tar.gz gentoo-2-d08359306bd4e034ca0f66c25dd4e407e6b98d02.tar.bz2 gentoo-2-d08359306bd4e034ca0f66c25dd4e407e6b98d02.zip |
Changed games to be owned root:games and closing bug #45302.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/games.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 881c0360e5a2..e663406c4ca9 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.64 2004/04/09 22:09:23 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.65 2004/06/14 14:18:13 wolf31o2 Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org # @@ -82,7 +82,8 @@ dogameslib.so() { gameswrapper ${FUNCNAME/games} "$@"; } newgamesbin() { gameswrapper ${FUNCNAME/games} "$@"; } newgamessbin() { gameswrapper ${FUNCNAME/games} "$@"; } -gamesowners() { chown ${GAMES_USER}:${GAMES_GROUP} "$@"; } +#gamesowners() { chown ${GAMES_USER}:${GAMES_GROUP} "$@"; } +gamesowners() { chown root:${GAMES_GROUP} "$@"; } gamesperms() { chmod u+rw,g+r-w,o-rwx "$@"; } prepgamesdirs() { local dir="" |