diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2014-03-12 09:40:51 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2014-03-12 09:40:51 +0100 |
commit | befdc25af258fa460a5b33637f96fc6cf275da03 (patch) | |
tree | 3d695375c0439e5d457c99007848a81eedc7cd8c | |
parent | 8c367295e4ed49326273d4e8de108ef038cce1cc (diff) | |
download | zsh-befdc25af258fa460a5b33637f96fc6cf275da03.tar.gz zsh-befdc25af258fa460a5b33637f96fc6cf275da03.zip |
Don't even try to run test suite on hurd, it hangs
Hence ignoring just the exit code on hurd doesn't help
-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 |