Package: kernel-package
Version: 8.135
Severity: wishlist
Tags: patch

Hi,

Please apply the attached patch which disables the HAS_VERSION_MISMATCH
check for official kernel builds (determined by the presence of
debian/official). As all the debian kernel images are built from the
same source, this check is erroneously triggered for them, terminating
the build. With the patch builds finish fine.

Thanks and best regards,

Jurij Smakov                                        [EMAIL PROTECTED]
Key: http://www.wooyd.org/pgpkey/                   KeyID: C99E03CC
diff -aur a/kernel/rules b/kernel/rules
--- a/kernel/rules      2005-05-07 03:40:22.000000000 -0400
+++ b/kernel/rules      2005-06-06 19:45:43.000000000 -0400
@@ -1169,7 +1169,8 @@
                   fi; )
 ifneq ($(strip $(saved_version)),)
 ifneq ($(strip $(saved_version)),$(strip $(version)))
-HAVE_VERSION_MISMATCH=YES
+HAVE_VERSION_MISMATCH := $(shell if test ! -f debian/official;\
+                              then echo YES; fi; )
 endif
 endif
 endif

Reply via email to