From 6d447c9da743fe71b845c17eddff2702a09fa1e2 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Thu, 13 Mar 2008 21:00:07 +0000 Subject: 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} '{}' \; } -- cgit v1.2.3-65-gdbad