diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-08-09 00:43:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-08-09 00:43:48 +0000 |
commit | 3638f990a9aacc378111f2a16db6bdc69b6ab307 (patch) | |
tree | f88d9b7190003a16b38219c3c805d25a90053884 /eclass/eutils.eclass | |
parent | Commit properly named gentoo-sources-3.0.0 ebuild, as eclass support for 3.X ... (diff) | |
download | historical-3638f990a9aacc378111f2a16db6bdc69b6ab307.tar.gz historical-3638f990a9aacc378111f2a16db6bdc69b6ab307.tar.bz2 historical-3638f990a9aacc378111f2a16db6bdc69b6ab307.zip |
fix typo pointed out by Samuli
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index d3a24ed8cad2..d1b7c1908357 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.361 2011/08/08 02:01:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.362 2011/08/09 00:43:48 vapier Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -472,7 +472,7 @@ epatch_user() { [[ $# -ne 0 ]] && die "epatch_user takes no options" # Allow multiple calls to this function; ignore all but the first - local applied="${T}/epach_user.applied" + local applied="${T}/epatch_user.applied" [[ -e ${applied} ]] && return 2 # don't clobber any EPATCH vars that the parent might want |