linux-source: Disable compression of package (but use gzip, to keep old tools happy)

svn path=/dists/sid/linux/; revision=20399
This commit is contained in:
Ben Hutchings 2013-07-21 22:41:58 +00:00
parent 2b83afcb2f
commit f64aa6874e
2 changed files with 6 additions and 2 deletions

3
debian/changelog vendored
View File

@ -11,7 +11,8 @@ linux (3.10.1-2) UNRELEASED; urgency=low
* rtlwifi: rtl8723ae: Fix typo in firmware names
* [x86] Change INTEL_MEI_ME back to a module (Closes: #717383)
* [armhf/armmp] Enable NET_CALXEDA_XGMAC as module (Closes: #717269)
* linux-source: Switch compression of tarball and patch to xz
* linux-source: Switch compression of tarball and patch to xz. Disable
compression of package (but use gzip, to keep old tools happy).
-- Arnaud Patard <arnaud.patard@rtp-net.org> Tue, 16 Jul 2013 08:19:29 +0200

5
debian/rules.real vendored
View File

@ -500,6 +500,9 @@ install-source: $(BUILD_DIR)/linux-source-$(UPSTREAMVERSION).tar.xz $(foreach FE
dh_testdir
dh_testroot
dh_install '$^' /usr/src
+$(MAKE_SELF) install-base
# We don't want to recompress, but -Znone is not compatible with older
# tools and is currently rejected by dak. -Zgzip -z0 has almost the
# same effect.
+$(MAKE_SELF) install-base BUILDDEB_ARGS='-Zgzip -z0'
# vim: filetype=make