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 5277F138350 for ; Thu, 30 Apr 2020 08:34:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64689E088A; Thu, 30 Apr 2020 08:34:05 +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 41ABCE088A for ; Thu, 30 Apr 2020 08:34:05 +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 B996734F00C for ; Thu, 30 Apr 2020 08:34:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A904D1C3 for ; Thu, 30 Apr 2020 08:34:01 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1588235619.0c9b4f108fea55858387d5b87fbc2cd5e1481911.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/md4sum/md4sum-0.02.03-r2.ebuild X-VCS-Directories: app-crypt/md4sum/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 0c9b4f108fea55858387d5b87fbc2cd5e1481911 X-VCS-Branch: master Date: Thu, 30 Apr 2020 08:34:01 +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: 86498222-097a-485d-b9ee-a7f21c52862b X-Archives-Hash: 77b12e8d241754750825b46352d72e56 commit: 0c9b4f108fea55858387d5b87fbc2cd5e1481911 Author: Hanno Böck gentoo org> AuthorDate: Thu Apr 30 08:33:39 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Thu Apr 30 08:33:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9b4f10 app-crypt/md4sum: Use safer sed delimiter Closes: https://bugs.gentoo.org/710806 Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-2.3.99, Repoman-2.3.22 app-crypt/md4sum/md4sum-0.02.03-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild index 8198a1631ad..af650312ff4 100644 --- a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild +++ b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,7 @@ PATCHES=( "${FILESDIR}"/md4sum-fix-out-of-bounds-write.diff ) src_prepare() { default - sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" \ + sed -i -e "s;CFLAGS=;CFLAGS=${CFLAGS} ;g" \ -e "s:install -s:install:g" Makefile.Linux || die }