mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-26 12:53:50 +00:00
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:
parent
b739181ed3
commit
9b2f5738c6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user