commit: 6d447c9da743fe71b845c17eddff2702a09fa1e2
Author: Chris Gianelloni <wolf31o2 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 13 21:00:07 2008 +0000
Commit: Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
CommitDate: Thu Mar 13 21:00:07 2008 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/games.git;a=commit;h=6d447c9d
Fix a typo and change to setgid instead of setuid. Oops.
svn path=/; revision=7
---
eclass/games.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/games.eclass b/eclass/games.eclass
index 3d5b1ff..1e4b44b 100644
--- a/eclass/games.eclass
+++ b/eclass/games.eclass
@@ -105,13 +105,13 @@ prepgamesdirs() {
[[ -d ${D}/${GAMES_BINDIR} ]] || return 0
if [[ -n ${GAMES_SCORES_FILES} ]]
then
- perms=4750
+ perms=2750
for f in ${GAMES_SCORES_FILES}
do
GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners
"${D}/${f}"
done
GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R \
- "${D}/${GAMES_BINDIR}"i/*
+ "${D}/${GAMES_BINDIR}"/*
fi
find "${D}/${GAMES_BINDIR}" -maxdepth 1 -type f -exec chmod ${perms}
'{}' \;
}