linux-headers: Fix file installation on architectures without Kbuild.platforms (Closes: #703800)

svn path=/dists/sid/linux/; revision=19942
This commit is contained in:
Ben Hutchings 2013-03-23 23:22:08 +00:00
parent 6b2afc5cf7
commit 000a73ec79
2 changed files with 3 additions and 3 deletions

2
debian/changelog vendored
View File

@ -2,6 +2,8 @@ linux (3.2.41-2) UNRELEASED; urgency=low
* [ia64] udeb: Remove efi-modules package; make kernel-image provide
efi-modules (fixes FTBFS)
* linux-headers: Fix file installation on architectures without
Kbuild.platforms (Closes: #703800)
-- Ben Hutchings <ben@decadent.org.uk> Sat, 23 Mar 2013 17:45:03 +0000

4
debian/rules.real vendored
View File

@ -235,9 +235,7 @@ install-headers_$(ARCH)_$(FEATURESET): $(STAMPS_DIR)/source_$(FEATURESET)
( \
echo Makefile; \
find arch/$(KERNEL_ARCH) -maxdepth 1 -name 'Makefile*' -print; \
find arch/$(KERNEL_ARCH) -name 'module.lds' -print; \
find arch/$(KERNEL_ARCH)/Kbuild.platforms -print; \
find arch/$(KERNEL_ARCH) -name 'Platform' -print; \
find arch/$(KERNEL_ARCH) -name 'module.lds' -o -name 'Kbuild.platforms' -print -o -name 'Platform' -print; \
find $$(find arch/$(KERNEL_ARCH) \( -name include -o -name scripts \) -type d -print) -print; \
find include -name 'asm*' -prune -o -print; \
find include/asm-generic -print; \