From 1b82d05b851917d17de439397e132d33e005e4e1 Mon Sep 17 00:00:00 2001 From: Robert Clausecker Date: Mon, 20 Jan 2025 16:30:33 +0100 Subject: [PATCH] audio/gnome-podcasts: fix build on armv7 This avoids an address space exhaustion due to LTO. Approved by: portmgr (build fix blanket) MFH: 2025Q1 --- 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 6ff33a240a50..d090c729730f 100644 --- a/audio/gnome-podcasts/Makefile +++ b/audio/gnome-podcasts/Makefile @@ -27,7 +27,7 @@ GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml .include -.if ${ARCH} == i386 || ${ARCH} == powerpc +.if ${ARCH} == i386 || ${ARCH} == powerpc || ${ARCH:Marmv?} # https://github.com/rust-lang/rust/issues/85598 LTO_UNSAFE= yes .endif