diff options
author | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 08:04:32 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 08:31:37 -0500 |
commit | 8ffed252e4f70d9fc85fd711782fedbfd01a7475 (patch) | |
tree | 537f99b891de2e3cfd9597f3e849bc425f0077e2 /net-misc/netpipe | |
parent | app-shells/sash: fix bad sed delimiter (diff) | |
download | gentoo-8ffed252e4f70d9fc85fd711782fedbfd01a7475.tar.gz gentoo-8ffed252e4f70d9fc85fd711782fedbfd01a7475.tar.bz2 gentoo-8ffed252e4f70d9fc85fd711782fedbfd01a7475.zip |
net-misc/netpipe: fix bad sed delimiter
Closes: https://bugs.gentoo.org/710710
Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'net-misc/netpipe')
-rw-r--r-- | net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild index 21048b7642dc..8aa545bdb714 100644 --- a/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild +++ b/net-misc/netpipe/netpipe-1.0.0_beta2-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,8 +18,8 @@ S="${WORKDIR}/${PN}" src_prepare() { sed -i \ - -e "s:^OPT=.*:OPT = ${CFLAGS} ${LDFLAGS}:" \ - -e "s:^CC=.*:CC = $(tc-getCC):" \ + -e "s|^OPT=.*|OPT = ${CFLAGS} ${LDFLAGS}|" \ + -e "s|^CC=.*|CC = $(tc-getCC)|" \ Makefile || die "sed failed" default } |