diff options
author | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 08:02:33 -0500 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2020-03-24 08:31:35 -0500 |
commit | 35588d4610bdaadcd0628fef910c97c910fcdd88 (patch) | |
tree | 6b2c305758f2bb9708c1a79dd48751349fc86d42 /app-shells/sash | |
parent | app-shells/smrsh: fix bad sed delimiter (diff) | |
download | gentoo-35588d4610bdaadcd0628fef910c97c910fcdd88.tar.gz gentoo-35588d4610bdaadcd0628fef910c97c910fcdd88.tar.bz2 gentoo-35588d4610bdaadcd0628fef910c97c910fcdd88.zip |
app-shells/sash: fix bad sed delimiter
Closes: https://bugs.gentoo.org/710708
Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'app-shells/sash')
-rw-r--r-- | app-shells/sash/sash-3.8.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-shells/sash/sash-3.8.ebuild b/app-shells/sash/sash-3.8.ebuild index c927bf54bedb..c9e88e0c3df7 100644 --- a/app-shells/sash/sash-3.8.ebuild +++ b/app-shells/sash/sash-3.8.ebuild @@ -23,7 +23,7 @@ src_prepare() { eapply "${FILESDIR}"/sash-3.7-builtin.patch sed \ - -e "s:-O3:${CFLAGS}:" \ + -e "s|-O3|${CFLAGS}|" \ -e '/strip/d' \ -i Makefile || die sed \ |