diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2020-02-24 22:02:53 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2020-02-24 22:04:17 +0100 |
commit | 7ea98dff9ab39e6b129977fad9d0f5b7dc689809 (patch) | |
tree | d93382ece96706e7aeb34f09c1123debb320dae4 /x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild | |
parent | dev-python/kafka-python: PYTHON_COMPAT+=(pythonh3_8) (diff) | |
download | gentoo-7ea98dff9ab39e6b129977fad9d0f5b7dc689809.tar.gz gentoo-7ea98dff9ab39e6b129977fad9d0f5b7dc689809.tar.bz2 gentoo-7ea98dff9ab39e6b129977fad9d0f5b7dc689809.zip |
x11-plugins/wmpop3lb: replace ":" as sed delimiter
Closes: https://bugs.gentoo.org/710494
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild')
-rw-r--r-- | x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild index 05a951236c01..8b443af7ff28 100644 --- a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild +++ b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild @@ -25,13 +25,13 @@ PATCHES=( "${FILESDIR}"/${P}-fix-RECV-and-try-STAT-if-LAST-wont-work.patch src_prepare() { #Honour Gentoo CFLAGS - sed -i -e "s:-g2 -D_DEBUG:${CFLAGS}:" "wmpop3/Makefile" || die + sed -i -e "s|-g2 -D_DEBUG|${CFLAGS}|" "wmpop3/Makefile" || die #De-hardcode compiler - sed -i -e "s:cc:\$(CC):g" "wmpop3/Makefile" || die + sed -i -e "s|cc|\$(CC)|g" "wmpop3/Makefile" || die #Honour Gentoo LDFLAGS - bug #335986 - sed -i -e "s:\$(FLAGS) -o wmpop3lb:\$(LDFLAGS) -o wmpop3lb:" "wmpop3/Makefile" || die + sed -i -e "s|\$(FLAGS) -o wmpop3lb|\$(LDFLAGS) -o wmpop3lb|" "wmpop3/Makefile" || die default } |