git: c0487a6bb8ac - 2025Q1 - audio/gnome-podcasts: fix build on armv7
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Jan 2025 23:51:53 UTC
The branch 2025Q1 has been updated by fuz: URL: https://cgit.FreeBSD.org/ports/commit/?id=c0487a6bb8acaa94df29c97bafe3e1490fab6bf9 commit c0487a6bb8acaa94df29c97bafe3e1490fab6bf9 Author: Robert Clausecker <fuz@FreeBSD.org> AuthorDate: 2025-01-20 15:30:33 +0000 Commit: Robert Clausecker <fuz@FreeBSD.org> CommitDate: 2025-01-21 23:50:47 +0000 audio/gnome-podcasts: fix build on armv7 This avoids an address space exhaustion due to LTO. Approved by: portmgr (build fix blanket) MFH: 2025Q1 (cherry picked from commit 1b82d05b851917d17de439397e132d33e005e4e1) --- audio/gnome-podcasts/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/gnome-podcasts/Makefile b/audio/gnome-podcasts/Makefile index 145de725eb51..dff3169604ac 100644 --- a/audio/gnome-podcasts/Makefile +++ b/audio/gnome-podcasts/Makefile @@ -27,7 +27,7 @@ GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml .include <bsd.port.options.mk> -.if ${ARCH} == i386 || ${ARCH} == powerpc +.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?} # https://github.com/rust-lang/rust/issues/85598 LTO_UNSAFE= yes .endif