diff options
author | orbea <orbea@riseup.net> | 2022-05-06 08:13:51 -0700 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-05-06 17:34:55 +0200 |
commit | 1a68b9ae8dcdd5ba5236f28b4bcaca5c17eb74b7 (patch) | |
tree | b57e356a7f8ff3fd87d35e0a3213c0f3c97993e0 /app-benchmarks | |
parent | dev-vcs/stgit: Stabilize 1.5 ALLARCHES, #842987 (diff) | |
download | gentoo-1a68b9ae8dcdd5ba5236f28b4bcaca5c17eb74b7.tar.gz gentoo-1a68b9ae8dcdd5ba5236f28b4bcaca5c17eb74b7.tar.bz2 gentoo-1a68b9ae8dcdd5ba5236f28b4bcaca5c17eb74b7.zip |
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@riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/25350
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-benchmarks')
-rw-r--r-- | app-benchmarks/ramspeed/ramspeed-3.5.0-r2.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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 \ |