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 DD23C138350 for ; Tue, 24 Mar 2020 13:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB0BAE0973; Tue, 24 Mar 2020 13:33:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4B058E0973 for ; Tue, 24 Mar 2020 13:33:04 +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 41F3734F049 for ; Tue, 24 Mar 2020 13:33:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D20819F for ; Tue, 24 Mar 2020 13:32:58 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1585056697.8ffed252e4f70d9fc85fd711782fedbfd01a7475.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild X-VCS-Directories: net-misc/netpipe/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 8ffed252e4f70d9fc85fd711782fedbfd01a7475 X-VCS-Branch: master Date: Tue, 24 Mar 2020 13:32:58 +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: 9aea6839-1e44-4468-b8d7-61c486f7a780 X-Archives-Hash: 29053a88ffeeeb8f582139422c0d01a5 commit: 8ffed252e4f70d9fc85fd711782fedbfd01a7475 Author: Ben Kohler gentoo org> AuthorDate: Tue Mar 24 13:04:32 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Mar 24 13:31:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ffed252 net-misc/netpipe: fix bad sed delimiter Closes: https://bugs.gentoo.org/710710 Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Ben Kohler gentoo.org> net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild index 21048b7642d..8aa545bdb71 100644 --- a/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild +++ b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,8 +18,8 @@ S="${WORKDIR}/${PN}" src_prepare() { sed -i \ - -e "s:^OPT=.*:OPT = ${CFLAGS} ${LDFLAGS}:" \ - -e "s:^CC=.*:CC = $(tc-getCC):" \ + -e "s|^OPT=.*|OPT = ${CFLAGS} ${LDFLAGS}|" \ + -e "s|^CC=.*|CC = $(tc-getCC)|" \ Makefile || die "sed failed" default }