diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-01 23:07:17 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-01 23:07:17 +0000 |
commit | 3d696db9903531f06a1f4415482d2542e497e6bf (patch) | |
tree | 6845f95eaddeb0f37480e93d7a773b6883cd201e /eclass/games.eclass | |
parent | minor fixes (diff) | |
download | historical-3d696db9903531f06a1f4415482d2542e497e6bf.tar.gz historical-3d696db9903531f06a1f4415482d2542e497e6bf.tar.bz2 historical-3d696db9903531f06a1f4415482d2542e497e6bf.zip |
chown user.group -> chown user:group
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 832f0f888d5b..37b89c99b193 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.49 2003/09/06 03:05:26 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.50 2003/10/01 23:07:17 mr_bones_ Exp $ # # devlist: {vapier,wolf31o2,msterret}@gentoo.org # @@ -80,7 +80,7 @@ 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} $@; } gamesperms() { chmod u+rw,g+r-w,o-rwx $@; } prepgamesdirs() { for dir in ${GAMES_PREFIX} ${GAMES_PREFIX_OPT} ${GAMES_DATADIR} ${GAMES_SYSCONFDIR} \ |