Skip to content

Commit

Permalink
app-shells/smrsh: fix bad sed delimiter
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/710898
Package-Manager: Portage-2.3.95, Repoman-2.3.21
Signed-off-by: Ben Kohler <[email protected]>
  • Loading branch information
benkohler committed Mar 24, 2020
1 parent cbdcdf4 commit b1338de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app-shells/smrsh/smrsh-8.15.2.ebuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 1999-2015 Gentoo Foundation
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=5
Expand Down Expand Up @@ -26,8 +26,8 @@ src_prepare() {
-e "s:/usr/adm/sm.bin:/var/lib/smrsh:g" \
-i README -i smrsh.8 || die "sed failed"

sed -e "s:@@confCCOPTS@@:${CFLAGS}:" \
-e "s:@@confLDOPTS@@:${LDFLAGS}:" \
sed -e "s|@@confCCOPTS@@|${CFLAGS}|" \
-e "s|@@confLDOPTS@@|${LDFLAGS}|" \
-e "s:@@confCC@@:$(tc-getCC):" "${FILESDIR}/site.config.m4" \
> "${S}/devtools/Site/site.config.m4" || die "sed failed"
}
Expand Down

0 comments on commit b1338de

Please sign in to comment.