diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-03-13 21:14:17 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2008-03-13 21:14:17 +0000 |
commit | d2bbe77375bb19f38909651f394a78dd60d7f501 (patch) | |
tree | 7f63eb64dca17b0f887599f1300fd52abfbd05a8 | |
parent | Fix a typo and change to setgid instead of setuid. Oops. (diff) | |
download | games-d2bbe77375bb19f38909651f394a78dd60d7f501.tar.gz games-d2bbe77375bb19f38909651f394a78dd60d7f501.tar.bz2 games-d2bbe77375bb19f38909651f394a78dd60d7f501.zip |
We should likely use 2755 instead of 2750, so the files can be read and any shell scripts that end up in GAMES_BINDIR are readable.
svn path=/; revision=8
-rw-r--r-- | eclass/games.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 1e4b44b..8a7f681 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -105,7 +105,7 @@ prepgamesdirs() { [[ -d ${D}/${GAMES_BINDIR} ]] || return 0 if [[ -n ${GAMES_SCORES_FILES} ]] then - perms=2750 + perms=2775 for f in ${GAMES_SCORES_FILES} do GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners "${D}/${f}" |