diff options
author | 2014-11-03 22:55:20 +0000 | |
---|---|---|
committer | 2014-11-03 22:55:20 +0000 | |
commit | cfd01586c38066b72f4734e149c7b35517f705af (patch) | |
tree | a88a784cdbcf68a5a2d477524af38bee7cc123d7 /eclass | |
parent | Version bump, thanks to Grischa Toedt (bug #527834). (diff) | |
download | historical-cfd01586c38066b72f4734e149c7b35517f705af.tar.gz historical-cfd01586c38066b72f4734e149c7b35517f705af.tar.bz2 historical-cfd01586c38066b72f4734e149c7b35517f705af.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 |