summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2024-03-16 22:56:14 -0400
committerSam James <sam@gentoo.org>2024-03-17 05:28:38 +0000
commit5ccfe32874dab1d3531dc007f8695ada8c738888 (patch)
treebc575bef0448728e2a4d6572f219cf5e75fb9543 /media-gfx
parentmedia-video/vlc: fix another modern C issue (diff)
downloadgentoo-5ccfe32874dab1d3531dc007f8695ada8c738888.tar.gz
gentoo-5ccfe32874dab1d3531dc007f8695ada8c738888.tar.bz2
gentoo-5ccfe32874dab1d3531dc007f8695ada8c738888.zip
media-gfx/arss: fix LTO properly this time
Unsure what happened to me but this logic did not work as the wrong phase was modified. Fixes: e886fb559492e6f472ff70aa2794c33e5225c59e Bug: https://bugs.gentoo.org/859604 Closes: https://bugs.gentoo.org/926752 Signed-off-by: Eli Schwartz <eschwartz93@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/arss/arss-0.2.3-r1.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/media-gfx/arss/arss-0.2.3-r1.ebuild b/media-gfx/arss/arss-0.2.3-r1.ebuild
index 04680a5ffea3..4edb3cef494b 100644
--- a/media-gfx/arss/arss-0.2.3-r1.ebuild
+++ b/media-gfx/arss/arss-0.2.3-r1.ebuild
@@ -23,7 +23,7 @@ PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
DOCS=( ../AUTHORS ../ChangeLog )
-src_compile() {
+src_configure() {
# -Werror=strict-aliasing
# https://bugs.gentoo.org/859604
# Upstream is on sourceforge, inactive since 2009. No bug filed.
@@ -32,5 +32,5 @@ src_compile() {
append-flags -fno-strict-aliasing
filter-lto
- default
+ cmake_src_configure
}