From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6A26F158090 for ; Sun, 15 May 2022 01:02:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3662E07EF; Sun, 15 May 2022 01:02:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83B25E07EF for ; Sun, 15 May 2022 01:02:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A0C5341BE3 for ; Sun, 15 May 2022 01:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25B98466 for ; Sun, 15 May 2022 01:02:51 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1652576565.17d2932ad68bf7ada21cbba5283db8d027a8c84e.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/portageq X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 17d2932ad68bf7ada21cbba5283db8d027a8c84e X-VCS-Branch: master Date: Sun, 15 May 2022 01:02:51 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5cf7adfb-1be8-4571-a594-420b0628b1a4 X-Archives-Hash: 5cbafa8e33f1978e6b5d369b1b455ff5 commit: 17d2932ad68bf7ada21cbba5283db8d027a8c84e Author: Sam James gentoo org> AuthorDate: Sun May 15 01:01:57 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 15 01:02:45 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=17d2932a portageq: egrep -> grep -E Signed-off-by: Sam James gentoo.org> bin/portageq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/portageq b/bin/portageq index a4ee319a0..6d12c98dd 100755 --- a/bin/portageq +++ b/bin/portageq @@ -935,7 +935,7 @@ docstrings[ "envvar" ] = """+ Returns a specific environment variable as exists prior to ebuild.sh. - Similar to: emerge --verbose --info | egrep '^=' + Similar to: emerge --verbose --info | grep -E '^=' """ envvar.__doc__ = docstrings["envvar"]