summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2003-08-05 04:22:51 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2003-08-05 04:22:51 +0000
commit14c0a99beec5660212cf31eaafa4056f00024223 (patch)
tree96a3f28a17fc91528334ffc9a85b4ba96c1fe278 /eclass
parentfix my removal of eutils (diff)
downloadhistorical-14c0a99beec5660212cf31eaafa4056f00024223.tar.gz
historical-14c0a99beec5660212cf31eaafa4056f00024223.tar.bz2
historical-14c0a99beec5660212cf31eaafa4056f00024223.zip
use ${D} for executable chmod to avoid sandbox violation
Diffstat (limited to 'eclass')
-rw-r--r--eclass/games.eclass4
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() {