diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-12 03:26:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-12 03:26:59 +0000 |
commit | ea20b2ce833405982d2e4f71ecba9384619f579f (patch) | |
tree | 7f55f4724eac2cb811a63acf7f14aaf625c54a53 /eclass/games.eclass | |
parent | Version bump #98714 by Peter Roozemaal. (diff) | |
download | gentoo-2-ea20b2ce833405982d2e4f71ecba9384619f579f.tar.gz gentoo-2-ea20b2ce833405982d2e4f71ecba9384619f579f.tar.bz2 gentoo-2-ea20b2ce833405982d2e4f71ecba9384619f579f.zip |
put maxdepth in correct position
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 799c42828eb0..867e07f85f1f 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.102 2005/07/06 20:23:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.103 2005/07/12 03:26:59 vapier Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -123,7 +123,7 @@ prepgamesdirs() { die "refusing to merge a setuid root game" fi done - find "${D}/${GAMES_BINDIR}" -type f -maxdepth 1 -exec chmod 750 '{}' \; + find "${D}/${GAMES_BINDIR}" -maxdepth 1 -type f -exec chmod 750 '{}' \; } gamesenv() { |