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 | b045c7459bc9bfcbe19f0afaf13938a921712217 (patch) | |
tree | e5a9055a26177fd592e759641b3e5b9f3dd9070c /eclass/games.eclass | |
parent | add dep (diff) | |
download | historical-b045c7459bc9bfcbe19f0afaf13938a921712217.tar.gz historical-b045c7459bc9bfcbe19f0afaf13938a921712217.tar.bz2 historical-b045c7459bc9bfcbe19f0afaf13938a921712217.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 |