commit: 207b47e9e3a634f9dc0ea157d2f794bc75b98347
Author: Chris Gianelloni <wolf31o2 <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 13 21:28:31 2008 +0000
Commit: Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
CommitDate: Thu Mar 13 21:28:31 2008 +0000
URL:
http://git.overlays.gentoo.org/gitweb/?p=proj/games.git;a=commit;h=207b47e9
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
---
eclass/games.eclass | 6 +++---
1 file 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}
'{}' \;
}