diff options
author | Michael Sterrett <msterret@gentoo.org> | 2003-08-05 04:22:51 +0000 |
---|---|---|
committer | Michael Sterrett <msterret@gentoo.org> | 2003-08-05 04:22:51 +0000 |
commit | 09cac183075aa4044abf7c17737f176bb4124c9f (patch) | |
tree | f70da0d8a6d003b000911ec1ee330e0da01ba8a2 /eclass | |
parent | fix my removal of eutils (diff) | |
download | gentoo-2-09cac183075aa4044abf7c17737f176bb4124c9f.tar.gz gentoo-2-09cac183075aa4044abf7c17737f176bb4124c9f.tar.bz2 gentoo-2-09cac183075aa4044abf7c17737f176bb4124c9f.zip |
use ${D} for executable chmod to avoid sandbox violation
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/games.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 9a1ddff5ff9a..681cc94983ac 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.47 2003/08/05 01:55:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.48 2003/08/05 04:22:51 msterret Exp $ # # devlist: {vapier,wolf31o2,msterret}@gentoo.org # @@ -91,7 +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 + chmod 750 ${D}/${GAMES_BINDIR}/* >& /dev/null } gamesenv() { |