Your message dated Wed, 17 Jan 2007 19:02:26 -0600 with message-id <[EMAIL PROTECTED]> and subject line Bug#405830: kernel-package passes empty CROSS_COMPILE to make has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---Package: kernel-package Somewhere between 2.6.18-7 and 2.6.18-8, something changed which causes make-kpkg to pass CROSS_COMPILE to make. CROSS_COMPILE is set by arch/parisc/Makefile in the kernel to the correct value when CONFIG_64BIT is set in the kernel config (as it is for config.{parisc64,parisc64-smp}). It would be nice if the empty CROSS_COMPILE wasn't set, so we could control it in the kernel, but I have a patch for make-kpkg to pass it there... It's currently build testing a kernel build, but it will take a while to get to the failure point. diff -Nur kernel-package-10.065/kernel/ruleset/arches/hppa.mk kernel-package-10.065~/kernel/ruleset/arches/hppa.mk --- kernel-package-10.065/kernel/ruleset/arches/hppa.mk 2006-08-24 00:41:45.000000000 -0400 +++ kernel-package-10.065~/kernel/ruleset/arches/hppa.mk 2006-12-28 12:19:33.000000000 -0500 @@ -43,6 +43,10 @@ # This doesn't seem to work, but the other archs do it... DEBCONFIG=$(CONFDIR)/config.$(KPKG_SUBARCH) +ifneq (,$(findstring $(KPKG_SUBARCH), parisc64)) + KERNEL_CROSS:=hppa64-linux-gnu- +endif + #Local variables: #mode: makefile #End:
--- End Message ---
--- Begin Message ---Hi, make-kpkg only passes in an empty CROSS_COMPILE argument to kbuild if you pass in sa vlaue of "-". If the variable in unset when you invoke make-kpkg, it does nothing. manoj -- modesty, n.: Being comfortable that others will discover your greatness. Manoj Srivastava <[EMAIL PROTECTED]> <http://www.golden-gryphon.com/> 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C
--- End Message ---

