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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1DD071382C5 for ; Sat, 5 May 2018 16:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 285FBE07F6; Sat, 5 May 2018 16:02:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07DA1E07F6 for ; Sat, 5 May 2018 16:02:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99A39335C0C for ; Sat, 5 May 2018 16:02:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00ECD3D for ; Sat, 5 May 2018 16:02:52 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1525536166.edd5b9768179abf9b128ae733a16767e1e8fe56d.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/grep/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/grep/grep-3.1.ebuild X-VCS-Directories: sys-apps/grep/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: edd5b9768179abf9b128ae733a16767e1e8fe56d X-VCS-Branch: master Date: Sat, 5 May 2018 16:02:52 +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: 79afdb4f-0a3e-4d02-a33f-edfae0778ace X-Archives-Hash: 277e713e79e0cc5695fae220a33bab99 commit: edd5b9768179abf9b128ae733a16767e1e8fe56d Author: Fabian Groffen gentoo org> AuthorDate: Sat May 5 16:02:29 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sat May 5 16:02:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd5b976 sys-apps/grep: fix fgrep/egrep scripts Package-Manager: Portage-2.3.24, Repoman-2.3.6 sys-apps/grep/grep-3.1.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-apps/grep/grep-3.1.ebuild b/sys-apps/grep/grep-3.1.ebuild index 6424c8ba947..74350ee63c1 100644 --- a/sys-apps/grep/grep-3.1.ebuild +++ b/sys-apps/grep/grep-3.1.ebuild @@ -29,6 +29,7 @@ DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) src_prepare() { sed -i \ -e "s:@SHELL@:${EPREFIX}/bin/sh:g" \ + -e "s:@grep@:${EPREFIX}/bin/grep:" \ src/egrep.sh || die #523898 }