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 | f85121de6bfb9fa97ef8652436c62780d04fae35 (patch) | |
tree | 30aadad3126d7d669881f85365885f50f60e7ff8 /eclass | |
parent | Fixes for bug 71301 (regarding maximize/unmaximize issues) (diff) | |
download | gentoo-2-f85121de6bfb9fa97ef8652436c62780d04fae35.tar.gz gentoo-2-f85121de6bfb9fa97ef8652436c62780d04fae35.tar.bz2 gentoo-2-f85121de6bfb9fa97ef8652436c62780d04fae35.zip |
Don't chmod everything in GAMES_BINDIR because chmod follows symlinks (bug #93805)
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 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() { |