[kernel] r19943 - dists/sid/linux/debian

Ben Hutchings benh at alioth.debian.org
Sat Mar 23 23:29:38 UTC 2013


Author: benh
Date: Sat Mar 23 23:29:38 2013
New Revision: 19943

Log:
linux-headers: Fix find syntax so module.lds is included again

Modified:
   dists/sid/linux/debian/rules.real

Modified: dists/sid/linux/debian/rules.real
==============================================================================
--- dists/sid/linux/debian/rules.real	Sat Mar 23 23:22:08 2013	(r19942)
+++ dists/sid/linux/debian/rules.real	Sat Mar 23 23:29:38 2013	(r19943)
@@ -235,7 +235,7 @@
 	( \
 	  echo Makefile; \
 	  find arch/$(KERNEL_ARCH) -maxdepth 1 -name 'Makefile*' -print; \
-	  find arch/$(KERNEL_ARCH) -name 'module.lds' -o -name 'Kbuild.platforms' -print -o -name 'Platform' -print; \
+	  find arch/$(KERNEL_ARCH) \( -name 'module.lds' -o -name 'Kbuild.platforms' -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; \



More information about the Kernel-svn-changes mailing list