diff options
author | 2024-09-28 22:50:59 +0200 | |
---|---|---|
committer | 2024-09-28 22:51:37 +0200 | |
commit | e645be244bf14076147cfc22d39df4ae80cf1d44 (patch) | |
tree | e831b8f9839f4c988f384b561ac8788dfb7eb2fd | |
parent | app-benchmarks/geekbench: don't install x64 binaries on x86 (diff) | |
download | gentoo-e645be244bf14076147cfc22d39df4ae80cf1d44.tar.gz gentoo-e645be244bf14076147cfc22d39df4ae80cf1d44.tar.bz2 gentoo-e645be244bf14076147cfc22d39df4ae80cf1d44.zip |
app-crypt/ssss: don't use which
Closes: https://bugs.gentoo.org/940450
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | app-crypt/ssss/ssss-0.5.7-r2.ebuild (renamed from app-crypt/ssss/ssss-0.5.7-r1.ebuild) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app-crypt/ssss/ssss-0.5.7-r1.ebuild b/app-crypt/ssss/ssss-0.5.7-r2.ebuild index f847746a60e5..c9c3277abf1a 100644 --- a/app-crypt/ssss/ssss-0.5.7-r1.ebuild +++ b/app-crypt/ssss/ssss-0.5.7-r2.ebuild @@ -25,8 +25,10 @@ src_prepare() { tc-export CC - # Respect users [CL]FLAGS and don't strip, as portage does this part - sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -i Makefile || die + # Respect users [CL]FLAGS + # Don't strip, as portage does this part + # Don't use 'which' + sed -e 's/-O2/$(CFLAGS) -lgmp $(LDFLAGS)/g' -e '/strip/d' -e 's/which/type -P/g' -i Makefile || die } src_install() { |