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 54EE4138351 for ; Tue, 24 Mar 2020 13:33:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74E76E0961; Tue, 24 Mar 2020 13:33:01 +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 55715E0961 for ; Tue, 24 Mar 2020 13:33:01 +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 0A46834F014 for ; Tue, 24 Mar 2020 13:33:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44A3F198 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: <1585056692.cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/dev86/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/dev86/dev86-0.16.21-r3.ebuild X-VCS-Directories: sys-devel/dev86/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2 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: 40ec365e-fa9b-4beb-b8a3-d3712861fdde X-Archives-Hash: 9c62143f57f0f947fb218db0e219fa91 commit: cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2 Author: Ben Kohler gentoo org> AuthorDate: Tue Mar 24 12:53:09 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Mar 24 13:31:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbdcdf4e sys-devel/dev86: fix bad sed delimiter Closes: https://bugs.gentoo.org/710974 Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Ben Kohler gentoo.org> sys-devel/dev86/dev86-0.16.21-r3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-devel/dev86/dev86-0.16.21-r3.ebuild b/sys-devel/dev86/dev86-0.16.21-r3.ebuild index 35355a20312..25c40753bda 100644 --- a/sys-devel/dev86/dev86-0.16.21-r3.ebuild +++ b/sys-devel/dev86/dev86-0.16.21-r3.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 @@ -36,7 +36,7 @@ src_prepare() { makefile.in || die fi - sed -i -e "s:-O2 -g:${CFLAGS}:" -e '/INEXE=/s:-s::' makefile.in || die + sed -i -e "s|-O2 -g|${CFLAGS}|" -e '/INEXE=/s:-s::' makefile.in || die sed -i -e "s:/lib/:/$(get_libdir)/:" bcc/bcc.c || die sed -i -e '/INSTALL_OPTS=/s:-s::' bin86/Makefile || die sed -i -e '/install -m 755 -s/s:-s::' dis88/Makefile || die