commit: 1a68b9ae8dcdd5ba5236f28b4bcaca5c17eb74b7 Author: orbea <orbea <AT> riseup <DOT> net> AuthorDate: Fri May 6 15:13:51 2022 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Fri May 6 15:34:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a68b9ae
app-benchmarks/ramspeed: Fix build with slibtool It should be -no-pie and not -nopie, GNU libtool silently hides the typo. Bug: https://bugs.gentoo.org/798735 Signed-off-by: orbea <orbea <AT> riseup.net> Closes: https://github.com/gentoo/gentoo/pull/25350 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild b/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild index 049935400795..f7235482bd87 100644 --- a/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild +++ b/app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild @@ -31,7 +31,7 @@ src_configure() { append-ldflags -Wl,-z,noexecstack obj=( ramsmp.o ${arch_prefix}{fltmark,fltmem,intmark,intmem}.o ) - use pic && append-ldflags -nopie + use pic && append-ldflags -no-pie if use amd64; then sed -i \
