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

Ben Hutchings benh at alioth.debian.org
Sat Mar 23 23:22:09 UTC 2013


Author: benh
Date: Sat Mar 23 23:22:08 2013
New Revision: 19942

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

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

Modified: dists/sid/linux/debian/changelog
==============================================================================
--- dists/sid/linux/debian/changelog	Sat Mar 23 18:12:41 2013	(r19941)
+++ dists/sid/linux/debian/changelog	Sat Mar 23 23:22:08 2013	(r19942)
@@ -2,6 +2,8 @@
 
   * [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 at decadent.org.uk>  Sat, 23 Mar 2013 17:45:03 +0000
 

Modified: dists/sid/linux/debian/rules.real
==============================================================================
--- dists/sid/linux/debian/rules.real	Sat Mar 23 18:12:41 2013	(r19941)
+++ dists/sid/linux/debian/rules.real	Sat Mar 23 23:22:08 2013	(r19942)
@@ -235,9 +235,7 @@
 	( \
 	  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; \



More information about the Kernel-svn-changes mailing list