diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-08 14:23:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-08 14:23:10 +0000 |
commit | f002670fcd69b043b659cd2244ad98b2e9c40ba6 (patch) | |
tree | e0a667b24abdf67fe2da2c31c45ed44e01cdacd8 | |
parent | integrated in control-center (diff) | |
download | gentoo-2-f002670fcd69b043b659cd2244ad98b2e9c40ba6.tar.gz gentoo-2-f002670fcd69b043b659cd2244ad98b2e9c40ba6.tar.bz2 gentoo-2-f002670fcd69b043b659cd2244ad98b2e9c40ba6.zip |
dont force a ./ on the bin
-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 3bdcfddd8b82..ce7572f41579 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.56 2003/12/09 20:28:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.57 2004/01/08 14:23:10 vapier Exp $ # # devlist: {vapier,wolf31o2,msterret}@gentoo.org # @@ -198,7 +198,7 @@ games_make_wrapper() { cat << EOF > ${wrapper} #!/bin/sh cd "${chdir}" -exec "./${bin}" "\$@" +exec "${bin}" "\$@" EOF echo ${wrapper} } |