diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2020-11-25 00:11:25 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2020-11-25 00:11:46 +0100 |
commit | 09cd5f6959430ae85e157d40cfba21a33a4d6ae7 (patch) | |
tree | c8624d8000fffdf57a49e3ff0126bc93f400723d /app-misc/birthday | |
parent | app-misc/ondir: clean up old. (diff) | |
download | gentoo-09cd5f6959430ae85e157d40cfba21a33a4d6ae7.tar.gz gentoo-09cd5f6959430ae85e157d40cfba21a33a4d6ae7.tar.bz2 gentoo-09cd5f6959430ae85e157d40cfba21a33a4d6ae7.zip |
app-misc/birthday: replace sed delimiter.
replace : with @.
Closes: https://bugs.gentoo.org/710950
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-misc/birthday')
-rw-r--r-- | app-misc/birthday/birthday-1.6.2-r1.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app-misc/birthday/birthday-1.6.2-r1.ebuild b/app-misc/birthday/birthday-1.6.2-r1.ebuild index 94556795d5e8..aa9483800099 100644 --- a/app-misc/birthday/birthday-1.6.2-r1.ebuild +++ b/app-misc/birthday/birthday-1.6.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -16,10 +16,12 @@ KEYWORDS="amd64 ppc ppc64 sparc x86" src_prepare() { # Don't strip, install in correct share dir and respect CFLAGS sed \ - -e "s:install -s:install:g" -e "s:#SHARE:SHARE:g" -e "s:-O2:${CFLAGS}:g" \ + -e "s@install -s@install@g" \ + -e "s@#SHARE@SHARE@g" \ + -e "s@-O2@${CFLAGS}@g" \ -i Makefile || die sed \ - -e 's:grep -v:grep --binary-files=text -v:g' \ + -e 's@grep -v@grep --binary-files=text -v@g' \ -i runtest.sh || die default |