diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-05 21:32:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-05 21:32:33 +0000 |
commit | e01462fcaf3960b8318c89eb0a30a47f5d2dd82a (patch) | |
tree | 5f0d9be85158a5a06ddb5168363b91f93f3f0f87 /eclass/games.eclass | |
parent | add dep (diff) | |
download | gentoo-2-e01462fcaf3960b8318c89eb0a30a47f5d2dd82a.tar.gz gentoo-2-e01462fcaf3960b8318c89eb0a30a47f5d2dd82a.tar.bz2 gentoo-2-e01462fcaf3960b8318c89eb0a30a47f5d2dd82a.zip |
[[]] doesn't do filename expansion.
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 8f6e21a8c0fd..e64eba030d25 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.86 2005/02/04 00:07:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.87 2005/02/05 21:32:33 mr_bones_ Exp $ # # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -147,7 +147,7 @@ games_pkg_setup() { games_src_compile() { [[ -x ./configure ]] && { egamesconf || die "egamesconf failed"; } - [[ -e [Mm]akefile ]] && { emake || die "emake failed"; } + [ -e [Mm]akefile ] && { emake || die "emake failed"; } } # pkg_postinst function ... create env.d entry and warn about games group |