diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 01:55:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 01:55:40 +0000 |
commit | e09f302349e3c4797642766fa4a539c91aa897f2 (patch) | |
tree | 659110363d2808b1803170cb46d4e0bf33571eb7 /eclass/games.eclass | |
parent | Stable on x86 (diff) | |
download | historical-e09f302349e3c4797642766fa4a539c91aa897f2.tar.gz historical-e09f302349e3c4797642766fa4a539c91aa897f2.tar.bz2 historical-e09f302349e3c4797642766fa4a539c91aa897f2.zip |
make sure stuff in $GAMES_BINDIR is 750
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 2a8d310c325d..9a1ddff5ff9a 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.46 2003/08/01 02:04:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.47 2003/08/05 01:55:40 vapier Exp $ # # devlist: {vapier,wolf31o2,msterret}@gentoo.org # @@ -91,6 +91,7 @@ prepgamesdirs() { find ${D}/${dir} -type f -print0 | xargs --null chmod o-rwx,g+r ) >& /dev/null done + chmod 750 ${GAMES_BINDIR}/* >& /dev/null } gamesenv() { |