diff options
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 3236313aa..d6201a1bb 100755 --- a/debian/rules +++ b/debian/rules @@ -46,7 +46,9 @@ build: build-arch build-indep build-arch: configure-stamp dh_auto_build -B obj --parallel - HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel || test `dpkg-architecture -qDEB_BUILD_ARCH` = hurd-i386 + if dpkg-architecture -qDEB_BUILD_ARCH_OS | grep -qv hurd; then \ + HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel; \ + fi touch $@ build-indep: configure-stamp |