diff options
author | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 07:53:09 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 08:31:32 -0500 |
commit | cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2 (patch) | |
tree | e737d2d82e8df5e142a8485e5df9e51283d1a177 /sys-devel | |
parent | sys-apps/audio-entropyd: fix bad sed delimiter (diff) | |
download | gentoo-cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2.tar.gz gentoo-cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2.tar.bz2 gentoo-cbdcdf4e56070aef47a3fd8052ba74b5b42dd6b2.zip |
sys-devel/dev86: fix bad sed delimiter
Closes: https://bugs.gentoo.org/710974
Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/dev86/dev86-0.16.21-r3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/dev86/dev86-0.16.21-r3.ebuild b/sys-devel/dev86/dev86-0.16.21-r3.ebuild index 35355a20312c..25c40753bdac 100644 --- a/sys-devel/dev86/dev86-0.16.21-r3.ebuild +++ b/sys-devel/dev86/dev86-0.16.21-r3.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 @@ -36,7 +36,7 @@ src_prepare() { makefile.in || die fi - sed -i -e "s:-O2 -g:${CFLAGS}:" -e '/INEXE=/s:-s::' makefile.in || die + sed -i -e "s|-O2 -g|${CFLAGS}|" -e '/INEXE=/s:-s::' makefile.in || die sed -i -e "s:/lib/:/$(get_libdir)/:" bcc/bcc.c || die sed -i -e '/INSTALL_OPTS=/s:-s::' bin86/Makefile || die sed -i -e '/install -m 755 -s/s:-s::' dis88/Makefile || die |