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 C5BE2138350 for ; Fri, 21 Feb 2020 18:33:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 031C0E08F6; Fri, 21 Feb 2020 18:33:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 BF162E08F6 for ; Fri, 21 Feb 2020 18:33:42 +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 007F134EF25 for ; Fri, 21 Feb 2020 18:33:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 826EC116 for ; Fri, 21 Feb 2020 18:33:38 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1582310001.84a277fe3bdf91b14eccd0a1621c034a7de6f545.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/procmail/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/procmail/procmail-3.22-r14.ebuild X-VCS-Directories: mail-filter/procmail/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 84a277fe3bdf91b14eccd0a1621c034a7de6f545 X-VCS-Branch: master Date: Fri, 21 Feb 2020 18:33:38 +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: 4646d006-4fe5-46d8-afad-1c8a3cee7f53 X-Archives-Hash: 26e9e5a458b545e0b7a2a71a5e944e2c commit: 84a277fe3bdf91b14eccd0a1621c034a7de6f545 Author: Mikle Kolyada gentoo org> AuthorDate: Fri Feb 21 18:30:17 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Feb 21 18:33:21 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84a277fe mail-filter/procmail: replace sed separators Closes: https://bugs.gentoo.org/710424 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mikle Kolyada gentoo.org> mail-filter/procmail/procmail-3.22-r14.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mail-filter/procmail/procmail-3.22-r14.ebuild b/mail-filter/procmail/procmail-3.22-r14.ebuild index f8caa1c551b..ca949f0929c 100644 --- a/mail-filter/procmail/procmail-3.22-r14.ebuild +++ b/mail-filter/procmail/procmail-3.22-r14.ebuild @@ -21,7 +21,7 @@ src_prepare() { # disable flock, using both fcntl and flock style locking # doesn't work with NFS with 2.6.17+ kernels, bug #156493 - sed -e "s:/\*#define NO_flock_LOCK:#define NO_flock_LOCK:" \ + sed -e "s|/\*#define NO_flock_LOCK|#define NO_flock_LOCK|" \ -i config.h || die "sed failed" if ! use mbox ; then @@ -74,10 +74,10 @@ src_compile() { "gcc"|*) append-flags -fno-inline-functions -fno-ipa-cp-clone ;; esac - sed -e "s:CFLAGS0 = -O:CFLAGS0 = ${CFLAGS}:" \ - -e "s:LDFLAGS0= -s:LDFLAGS0 = ${LDFLAGS}:" \ - -e "s:LOCKINGTEST=__defaults__:#LOCKINGTEST=__defaults__:" \ - -e "s:#LOCKINGTEST=/tmp:LOCKINGTEST=/tmp:" \ + sed -e "s|CFLAGS0 = -O|CFLAGS0 = ${CFLAGS}|" \ + -e "s|LDFLAGS0= -s|LDFLAGS0 = ${LDFLAGS}|" \ + -e "s|LOCKINGTEST=__defaults__|#LOCKINGTEST=__defaults__|" \ + -e "s|#LOCKINGTEST=/tmp|LOCKINGTEST=/tmp|" \ -i Makefile || die "sed failed" emake CC="$(tc-getCC)"