From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A6E7C138E74 for ; Mon, 3 Nov 2014 22:55:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9387DE0824; Mon, 3 Nov 2014 22:55:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4BD71E0824 for ; Mon, 3 Nov 2014 22:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0551B340299 for ; Mon, 3 Nov 2014 22:55:22 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 559) id AEAF895F6; Mon, 3 Nov 2014 22:55:20 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: eutils.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: eutils.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20141103225520.AEAF895F6@oystercatcher.gentoo.org> Date: Mon, 3 Nov 2014 22:55:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f064cc08-94ce-43aa-8b37-f309fc144ce3 X-Archives-Hash: 2967f470ef2b47f89e98090e15864bd6 vapier 14/11/03 22:55:20 Modified: eutils.eclass Log: eshopts_push: fix typo in command example #528120 by Tupone Alfredo Revision Changes Path 1.438 eclass/eutils.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.438&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?rev=1.438&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.eclass?r1=1.437&r2=1.438 Index: eutils.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v retrieving revision 1.437 retrieving revision 1.438 diff -u -r1.437 -r1.438 --- eutils.eclass 19 Sep 2014 17:09:05 -0000 1.437 +++ eutils.eclass 3 Nov 2014 22:55:20 -0000 1.438 @@ -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 @@ # 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