From 0e4c270da522e0b09ff8b14560c2d701f03c3df4 Mon Sep 17 00:00:00 2001 From: Bastian Blank Date: Wed, 24 Feb 2010 14:29:09 +0000 Subject: [PATCH] debian/rules.real: Fix scripts inclusion into common headers package. svn path=/dists/sid/linux-2.6/; revision=15268 --- debian/rules.real | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/debian/rules.real b/debian/rules.real index f0386448e..391ab6780 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -200,8 +200,7 @@ install-headers_$(ARCH)_$(FEATURESET): $(STAMPS_DIR)/source_$(ARCH)_$(FEATURESET echo Makefile; \ find arch/$(KERNEL_ARCH) -maxdepth 1 -name 'Makefile*' -print; \ find arch/$(KERNEL_ARCH) -name 'module.lds' -print; \ - find $$(find arch/$(KERNEL_ARCH) -name include -type d -print) -print; \ - find $$(find arch/$(KERNEL_ARCH) -maxdepth 1 -name scripts -type d -print) -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; \ ) \