From 2305591576786ff3b905b9dd35c398d620f0b33f Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 24 Sep 2022 15:52:37 -0500 Subject: [PATCH] Disable debian s390x native compilation to avoid build crashes cf. https://debbugs.gnu.org/57789 --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 8b522648ef1..06915420661 100755 --- a/debian/rules +++ b/debian/rules @@ -264,7 +264,7 @@ confflags += --with-sound=alsa confflags += --without-gconf confflags += --with-mailutils # At the moment, there's no mips64el libgccjitN-dev -ifneq ($(DEB_HOST_ARCH),mips64el) +ifeq (,$(filter $(DEB_HOST_ARCH),mips64el s390x)) deb_native_compilation_enabled := 1 confflags += --with-native-compilation endif -- 2.30.2