Disable debian s390x native compilation to avoid build crashes
authorRob Browning <rlb@defaultvalue.org>
Sat, 24 Sep 2022 20:52:37 +0000 (15:52 -0500)
committerRob Browning <rlb@defaultvalue.org>
Sat, 24 Sep 2022 20:56:15 +0000 (15:56 -0500)
cf. https://debbugs.gnu.org/57789

debian/rules

index 8b522648ef16c6887be535a4475e518b62bf5e73..06915420661a62f5a202fc7dfd73cde4e26bdf94 100755 (executable)
@@ -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