]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
UBUNTU: [Debian] Use default compression for all packages
authorSeth Forshee <seth.forshee@canonical.com>
Thu, 27 Apr 2017 16:53:05 +0000 (11:53 -0500)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Fri, 28 Apr 2017 10:19:32 +0000 (12:19 +0200)
BugLink: http://bugs.launchpad.net/bugs/1686782
Currently we specify bzip2 compression for the main and extras
packages, but bzip2 is no longer permitted in artful and causes
a ftbfs. Switch to the default compression.

Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
Acked-by: Brad Figg <brad.figg@canonical.com>
Acked-by: Andy Whitcroft <andy.whitcroft@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
debian/rules.d/2-binary-arch.mk

index 627d869f9aa7f03f95e48ef79f0675d2f47a1ba6..edda3f3ba845ee66fe2d680cd172234f3673abbf 100644 (file)
@@ -471,7 +471,7 @@ binary-%: install-%
        dh_shlibdeps -p$(pkgimg) $(shlibdeps_opts)
        $(lockme) dh_gencontrol -p$(pkgimg) -- -Vlinux:rprovides='$(rprovides)'
        dh_md5sums -p$(pkgimg)
-       dh_builddeb -p$(pkgimg) -- -Zbzip2 -z9
+       dh_builddeb -p$(pkgimg)
 
 ifeq ($(do_extras_package),true)
        if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \
@@ -483,7 +483,7 @@ ifeq ($(do_extras_package),true)
                dh_shlibdeps -p$(pkgimg_ex) $(shlibdeps_opts); \
                $(lockme) dh_gencontrol -p$(pkgimg_ex); \
                dh_md5sums -p$(pkgimg_ex); \
-               dh_builddeb -p$(pkgimg_ex) -- -Zbzip2 -z9; \
+               dh_builddeb -p$(pkgimg_ex); \
        fi
 endif