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 99903138350 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 C077DE0963; 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 A6042E0963 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 F216134F011 for ; Tue, 24 Mar 2020 13:32:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D34C2B 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: <1585056680.fd59a3f6dcab1bf5311ce507e3ad25e32ff2aebb.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/librfm/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/librfm/librfm-5.3.16.3-r1.ebuild X-VCS-Directories: x11-libs/librfm/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: fd59a3f6dcab1bf5311ce507e3ad25e32ff2aebb 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: d6bcb33a-4809-4ca1-88ba-169befe74d69 X-Archives-Hash: 3c837d7f4a78a1bbf354bcba97a4bc3b commit: fd59a3f6dcab1bf5311ce507e3ad25e32ff2aebb Author: Ben Kohler gentoo org> AuthorDate: Tue Mar 24 12:48:43 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Mar 24 13:31:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd59a3f6 x11-libs/librfm: fix bad sed delimiter Closes: https://bugs.gentoo.org/710886 Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Ben Kohler gentoo.org> x11-libs/librfm/librfm-5.3.16.3-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x11-libs/librfm/librfm-5.3.16.3-r1.ebuild b/x11-libs/librfm/librfm-5.3.16.3-r1.ebuild index bba8880c72b..265bef46957 100644 --- a/x11-libs/librfm/librfm-5.3.16.3-r1.ebuild +++ b/x11-libs/librfm/librfm-5.3.16.3-r1.ebuild @@ -35,7 +35,7 @@ S="${WORKDIR}/${MY_P}" src_prepare() { default - sed -i -e "s:-O2:${CFLAGS}:" m4/rfm-conditionals.m4 || die + sed -i -e "s|-O2|${CFLAGS}|" m4/rfm-conditionals.m4 || die eautoreconf }