From 000a73ec79989bc45f79678a0ff0660dafb4fd88 Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Sat, 23 Mar 2013 23:22:08 +0000 Subject: [PATCH] linux-headers: Fix file installation on architectures without Kbuild.platforms (Closes: #703800) svn path=/dists/sid/linux/; revision=19942 --- debian/changelog | 2 ++ debian/rules.real | 4 +--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 015f886f6..17673a2e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sat, 23 Mar 2013 17:45:03 +0000 diff --git a/debian/rules.real b/debian/rules.real index 9c36624c8..586851936 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -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; \