[kernel] r22837 - dists/trunk/linux-tools/debian

Ben Hutchings benh at moszumanska.debian.org
Thu Jul 16 18:59:30 UTC 2015


Author: benh
Date: Thu Jul 16 18:59:30 2015
New Revision: 22837

Log:
hyperv-daemons: Only attempt to build package on i386, amd64 (fixes FTBFS on other architectures)

Modified:
   dists/trunk/linux-tools/debian/changelog
   dists/trunk/linux-tools/debian/rules.real

Modified: dists/trunk/linux-tools/debian/changelog
==============================================================================
--- dists/trunk/linux-tools/debian/changelog	Wed Jul 15 18:47:14 2015	(r22836)
+++ dists/trunk/linux-tools/debian/changelog	Thu Jul 16 18:59:30 2015	(r22837)
@@ -2,6 +2,8 @@
 
   * linux-tools: Set $KBUILD_BUILD_TIMESTAMP from changelog and use it as man
     page date
+  * hyperv-daemons: Only attempt to build package on i386, amd64
+    (fixes FTBFS on other architectures)
 
  -- Ben Hutchings <ben at decadent.org.uk>  Mon, 13 Jul 2015 19:52:17 +0100
 

Modified: dists/trunk/linux-tools/debian/rules.real
==============================================================================
--- dists/trunk/linux-tools/debian/rules.real	Wed Jul 15 18:47:14 2015	(r22836)
+++ dists/trunk/linux-tools/debian/rules.real	Thu Jul 16 18:59:30 2015	(r22837)
@@ -3,10 +3,13 @@
 
 include debian/rules.defs
 
-binary-arch: install-kbuild install-usbip install-hyperv-daemons
+binary-arch: install-kbuild install-usbip
 ifneq ($(filter alpha amd64 arm64 armel armhf hppa i386 mips mips64 mips64el mipsel powerpc powerpcspe ppc64 ppc64el s390 s390x sh4 sparc sparc64 x32,$(DEB_BUILD_ARCH)),)
   binary-arch: install-tools
 endif
+ifneq ($(filter i386 amd64,$(DEB_BUILD_ARCH)),)
+  binary-arch: install-hyperv-daemons
+endif
 
 build: $(STAMPS_DIR)/build
 



More information about the Kernel-svn-changes mailing list