Disable JIT on MIPS architectures (apropos #892488)
authorMatthew Vernon <matthew@debian.org>
Sat, 10 Mar 2018 00:31:11 +0000 (00:31 +0000)
committerMatthew Vernon <matthew@debian.org>
Sat, 10 Mar 2018 00:31:11 +0000 (00:31 +0000)
JIT isn't working on MIPS, so disable it while upstream looks at the
problem.

debian/rules

index 614ac4aded9f86ea2df968bda070092f87662c92..ca8d46cf0ec2cefcf7646ea7fbb1c4e750ddbcf2 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
 #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, $(DEB_HOST_ARCH)),)
+ifneq ($(filter i386 amd64 armel armhf powerpc sparc arm64 ppc64 ppc64el, $(DEB_HOST_ARCH)),)
 deb_maint_conf_args +=--enable-jit
 else
 deb_maint_conf_args +=--disable-jit