linux-manual: Fix regression in reproducibility in 4.2~rc8-1~exp1

This commit is contained in:
Ben Hutchings 2015-10-24 12:42:08 +09:00
parent 3bbce43ea7
commit c805050962
2 changed files with 8 additions and 1 deletions

1
debian/changelog vendored
View File

@ -270,6 +270,7 @@ linux (4.2.4-1) UNRELEASED; urgency=medium
VIDEO_GO7007_LOADER, VIDEO_GO7007_USB_S2250_BOARD as modules
* net: Enable LIQUIDIO as module
* [x86] Enable X86_AMD_PLATFORM_DEVICE
* linux-manual: Fix regression in reproducibility in 4.2~rc8-1~exp1
-- Salvatore Bonaccorso <carnil@debian.org> Mon, 19 Oct 2015 21:23:18 +0200

8
debian/rules.real vendored
View File

@ -215,8 +215,14 @@ install-manual: DIR=$(BUILD_DIR)/build-doc
install-manual: DH_OPTIONS = -p$(PACKAGE_NAME)
install-manual: $(STAMPS_DIR)/build-doc
dh_prep
# Some manual pages are generated multiple times with different
# metadata, and need to be de-duplicated. This matches what the
# upstream installmandocs target does, except that we use
# dh_installman.
set -o pipefail; \
find $(DIR)/Documentation/DocBook/man/ -name '*.9.gz' | xargs dh_installman
find $(DIR)/Documentation/DocBook/man/ -name '*.9.gz' -printf '%h %f\n' | \
sort -k 2 -k 1 | uniq -f 1 | sed -e 's: :/:' | \
xargs dh_installman
+$(MAKE_SELF) install-base
install-headers_$(ARCH): PACKAGE_NAMES = linux-headers-$(ABINAME)-all linux-headers-$(ABINAME)-all-$(ARCH)