diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-11-03 22:55:20 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-11-03 22:55:20 +0000 |
commit | 03cf7d7af939708ab6ffef075ba06c3899ea569d (patch) | |
tree | 465f7d44770894ba93c27a04cc083c0e7f5a2c57 /eclass | |
parent | Version bump, thanks to Grischa Toedt (bug #527834). (diff) | |
download | gentoo-2-03cf7d7af939708ab6ffef075ba06c3899ea569d.tar.gz gentoo-2-03cf7d7af939708ab6ffef075ba06c3899ea569d.tar.bz2 gentoo-2-03cf7d7af939708ab6ffef075ba06c3899ea569d.zip |
eshopts_push: fix typo in command example #528120 by Tupone Alfredo
Diffstat (limited to '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 4ede0562f10c..46e27cac328d 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.437 2014/09/19 17:09:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.438 2014/11/03 22:55:20 vapier Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -231,7 +231,7 @@ evar_pop() { # A common example is to disable shell globbing so that special meaning/care # may be used with variables/arguments to custom functions. That would be: # @CODE -# eshopts_push -s noglob +# eshopts_push -o noglob # for x in ${foo} ; do # if ...some check... ; then # eshopts_pop |