commit: 1ff27d9452dac0083f45d4d5d51a8dd937d86d1b Author: Ben Kohler <bkohler <AT> gentoo <DOT> org> AuthorDate: Tue Mar 24 13:15:08 2020 +0000 Commit: Ben Kohler <bkohler <AT> gentoo <DOT> 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 <bkohler <AT> 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 }
