Debian package: don't use -z9 on 32-bit architectures

See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846564
This commit is contained in:
Moritz Bunkus 2017-12-22 19:00:11 +01:00
parent b739181ed3
commit 9b2f5738c6

View File

@ -70,4 +70,7 @@ override_dh_installchangelogs:
dh_installchangelogs NEWS.md
override_dh_builddeb:
dh_builddeb -- -Zxz -z8
case $(shell uname -m) in \
i*86) dh_builddeb -- -Zxz ;; \
*) dh_builddeb -- -Zxz -z9 ;; \
esac