diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2022-02-20 16:28:05 +0100 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2022-02-20 16:28:16 +0100 |
commit | 449d31cad40f4f09cc7f440964cdc3e1d72579c7 (patch) | |
tree | 3e19ef56afac351f8bb3ffe3487c9a209721b569 /x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild | |
parent | x11-plugins/wmudmount: USE=gcr requires gcr[gtk] (diff) | |
download | gentoo-449d31cad40f4f09cc7f440964cdc3e1d72579c7.tar.gz gentoo-449d31cad40f4f09cc7f440964cdc3e1d72579c7.tar.bz2 gentoo-449d31cad40f4f09cc7f440964cdc3e1d72579c7.zip |
x11-plugins/wmpop3lb: better sed command for $CC
Closes: https://bugs.gentoo.org/726246
Package-Manager: Portage-3.0.30, Repoman-3.0.3
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild index 8b443af7ff28..ddfd4a33a32d 100644 --- a/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild +++ b/x11-plugins/wmpop3lb/wmpop3lb-2.4.2-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -28,7 +28,7 @@ src_prepare() { 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|\tcc |\t\$(CC) |g" "wmpop3/Makefile" || die #Honour Gentoo LDFLAGS - bug #335986 sed -i -e "s|\$(FLAGS) -o wmpop3lb|\$(LDFLAGS) -o wmpop3lb|" "wmpop3/Makefile" || die |