Package: sphinxbase
Version: 0.8-6
Severity: important
Tags: patch
Usertags: hppa
The testsuite of sphinxbase fails to run on the hppa arch, as can be seen here:
http://buildd.debian-ports.org/status/fetch.php?pkg=sphinxbase&arch=hppa&ver=0.8-6&stamp=1408693446
But since other big endian have the testsuite disabled, it should be disabled
for hppa too (hppa is a big-endian arch).
The trivial attached patch for the debian/rules file fixes this by adding hppa
to the big endian arches.
Please apply,
Thanks,
Helge
diff -up ./debian/rules.org ./debian/rules
--- ./debian/rules.org 2014-08-29 20:52:42.251526785 +0000
+++ ./debian/rules 2014-08-29 20:53:36.259655138 +0000
@@ -24,7 +24,7 @@ override_dh_auto_build:
done
# Ignore testsuite failure on big-endian archs
-ifneq (,$(filter $(shell dpkg-architecture -qDEB_HOST_ARCH),mips powerpc powerpcspe ppc64 s390x sparc sparc64))
+ifneq (,$(filter $(shell dpkg-architecture -qDEB_HOST_ARCH),mips powerpc powerpcspe ppc64 s390x sparc sparc64 hppa))
override_dh_auto_test:
-dh_auto_test
endif