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@gentoo.org>
This commit is contained in:
Ben Kohler
2020-03-24 08:15:08 -05:00
parent 6f39094e6b
commit 1ff27d9452

View File

@@ -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
}