disable JIT on sparc (Closes: #1034779)
authorMatthew Vernon <matthew@debian.org>
Tue, 11 Jul 2023 22:10:29 +0000 (23:10 +0100)
committerMatthew Vernon <matthew@debian.org>
Tue, 11 Jul 2023 22:16:23 +0000 (23:16 +0100)
debian/rules

index 53752ae8d0cfb5f362aa8adc03e4e694dc69064d..97dfb1147c43b2f3e156fdd074aa322fea66e9ba 100755 (executable)
@@ -13,7 +13,7 @@ export DEB_CFLAGS_MAINT_APPEND = -Dregcomp=PCRE2regcomp -Dregexec=PCRE2regexec -
 
 deb_maint_conf_args = --enable-pcre2-16 --enable-pcre2-32 --disable-pcre2grep-callout
 #enable JIT only on architectures that support it (see pcre2jit.3)
-ifneq ($(filter i386 amd64 armel armhf mips mipsel mips64el powerpc sparc arm64 ppc64 ppc64el s390x, $(DEB_HOST_ARCH)),)
+ifneq ($(filter i386 amd64 armel armhf mips mipsel mips64el powerpc arm64 ppc64 ppc64el s390x, $(DEB_HOST_ARCH)),)
 deb_maint_conf_args +=--enable-jit
 else
 deb_maint_conf_args +=--disable-jit