diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-23 22:03:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-23 22:03:27 +0000 |
commit | 239e3eda0c5f7a1e197161131309dda7445cf561 (patch) | |
tree | 0a1c41f093b7b3076b2a0a01f7242e349cb41237 /eclass/games.eclass | |
parent | Fixes for bug 71301 (regarding maximize/unmaximize issues) (diff) | |
download | historical-239e3eda0c5f7a1e197161131309dda7445cf561.tar.gz historical-239e3eda0c5f7a1e197161131309dda7445cf561.tar.bz2 historical-239e3eda0c5f7a1e197161131309dda7445cf561.zip |
Don't chmod everything in GAMES_BINDIR because chmod follows symlinks (bug #93805)
Diffstat (limited to 'eclass/games.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 a3e2b0eb6c5d..0fe96b31a21a 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.99 2005/05/29 09:09:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.100 2005/06/23 22:03:27 mr_bones_ Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -125,7 +125,7 @@ prepgamesdirs() { die "refusing to merge a setuid root game" fi done - chmod 750 "${D}/${GAMES_BINDIR}"/* &> /dev/null + find "${D}/${GAMES_BINDIR}" -type f -maxdepth 1 -exec chmod 750 '{}' \; } gamesenv() { |