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 07F17138350 for ; Tue, 24 Mar 2020 13:33:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 306E7E096E; 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 8BC2FE096E for ; Tue, 24 Mar 2020 13:33:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3424E34F03D 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 DFCE71A8 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: <1585056707.1ff27d9452dac0083f45d4d5d51a8dd937d86d1b.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/serialmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/serialmail/serialmail-0.75-r4.ebuild X-VCS-Directories: net-mail/serialmail/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 1ff27d9452dac0083f45d4d5d51a8dd937d86d1b 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: d1b8a606-92fd-48ac-b69a-34854a774905 X-Archives-Hash: c98ca3323c96a86401af54f6fcf4feda commit: 1ff27d9452dac0083f45d4d5d51a8dd937d86d1b Author: Ben Kohler gentoo org> AuthorDate: Tue Mar 24 13:15:08 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Tue Mar 24 13:31:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff27d94 net-mail/serialmail: fix bad sed delimiter Closes: https://bugs.gentoo.org/710704 Package-Manager: Portage-2.3.95, Repoman-2.3.21 Signed-off-by: Ben Kohler gentoo.org> net-mail/serialmail/serialmail-0.75-r4.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-mail/serialmail/serialmail-0.75-r4.ebuild b/net-mail/serialmail/serialmail-0.75-r4.ebuild index bf0fede65d3..78801715a18 100644 --- a/net-mail/serialmail/serialmail-0.75-r4.ebuild +++ b/net-mail/serialmail/serialmail-0.75-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=4 @@ -27,9 +27,9 @@ src_prepare() { epatch "${WORKDIR}"/${P}-gentoo.patch epatch "${WORKDIR}"/${P}-smtpauth.patch epatch "${WORKDIR}"/${P}-smtpauth_comp.patch - sed -i "s:@CFLAGS@:${CFLAGS}:" conf-cc + sed -i "s|@CFLAGS@|${CFLAGS}|" conf-cc use static && LDFLAGS="${LDFLAGS} -static" - sed -i "s:@LDFLAGS@:${LDFLAGS}:" conf-ld + sed -i "s|@LDFLAGS@|${LDFLAGS}|" conf-ld epatch "${FILESDIR}"/${P}-implicit.patch }