Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/md4sum/
Date: Thu, 30 Apr 2020 08:34:06
Message-Id: 1588235619.0c9b4f108fea55858387d5b87fbc2cd5e1481911.hanno@gentoo
1 commit: 0c9b4f108fea55858387d5b87fbc2cd5e1481911
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 30 08:33:39 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 30 08:33:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9b4f10
7
8 app-crypt/md4sum: Use safer sed delimiter
9
10 Closes: https://bugs.gentoo.org/710806
11 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
12 Package-Manager: Portage-2.3.99, Repoman-2.3.22
13
14 app-crypt/md4sum/md4sum-0.02.03-r2.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
18 index 8198a1631ad..af650312ff4 100644
19 --- a/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
20 +++ b/app-crypt/md4sum/md4sum-0.02.03-r2.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=7
27 @@ -17,7 +17,7 @@ PATCHES=( "${FILESDIR}"/md4sum-fix-out-of-bounds-write.diff )
28
29 src_prepare() {
30 default
31 - sed -i -e "s:CFLAGS=:CFLAGS=${CFLAGS} :g" \
32 + sed -i -e "s;CFLAGS=;CFLAGS=${CFLAGS} ;g" \
33 -e "s:install -s:install:g" Makefile.Linux || die
34 }