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 | d3e47f03baaa64b0f69b3e0583da35203434872a (patch) | |
tree | 58f72cd977c9792f38b0ded627ab1cbfb6e27827 /eclass/games.eclass | |
parent | hppa KEYWORDS (diff) | |
download | historical-d3e47f03baaa64b0f69b3e0583da35203434872a.tar.gz historical-d3e47f03baaa64b0f69b3e0583da35203434872a.tar.bz2 historical-d3e47f03baaa64b0f69b3e0583da35203434872a.zip |
Changed games to be owned root:games and closing bug #45302.
Diffstat (limited to 'eclass/games.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="" |