summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2008-03-13 21:28:31 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2008-03-13 21:28:31 +0000
commit207b47e9e3a634f9dc0ea157d2f794bc75b98347 (patch)
tree589ca7e72d807d13e02e24df3d1c42f5f0e953a3
parentWe should likely use 2755 instead of 2750, so the files can be read and any s... (diff)
downloadgames-207b47e9e3a634f9dc0ea157d2f794bc75b98347.tar.gz
games-207b47e9e3a634f9dc0ea157d2f794bc75b98347.tar.bz2
games-207b47e9e3a634f9dc0ea157d2f794bc75b98347.zip
Comment out the code to change files in GAMES_BINDIR, since it fails it badly if the file is a shell script.
svn path=/; revision=9
-rw-r--r--eclass/games.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass
index 8a7f681..eaa6520 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=2775
+# perms=2775
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}"/*
+# GAMES_GROUP=${GAMES_SCORES_GROUP} gamesowners -R \
+# "${D}/${GAMES_BINDIR}"/*
fi
find "${D}/${GAMES_BINDIR}" -maxdepth 1 -type f -exec chmod ${perms} '{}' \;
}