On Mon, Jul 25, 2011 at 6:20 PM, Andreas Beckmann <deb...@abeckmann.de>wrote:
> severity 635317 normal > tags 635317 + moreinfo > thanks > > On 2011-07-25 04:57, Dean Loros wrote: > > Package: nvidia-kernel-dkms > > Version: 280.11-1 > > > Output of /var/lib/dkms/nvidia/280.11.1/build/make.log: > > > > DKMS make.log for nvidia-280.11 for kernel 3.0.0-rc6-amd64 (x86_64) > > Sun Jul 24 19:51:48 PDT 2011 > > make: Entering directory `/var/lib/dkms/nvidia/280.11/build' > > make -C /lib/modules/3.0.0-rc6-amd64/build M=`/bin/pwd` modules > > make[1]: Entering directory `/usr/src/linux-headers-3.0.0-rc6-amd64' > > Makefile:10: *** mixed implicit and normal rules. Stop. > > This points to a problem in > /usr/src/linux-headers-3.0.0-rc6-amd64/Makefile > > > make[1]: Leaving directory `/usr/src/linux-headers-3.0.0-rc6-amd64' > > make: *** [modules] Error 2 > > make: Leaving directory `/var/lib/dkms/nvidia/280.11/build' > > Let my try myself ... > > DKMS make.log for nvidia-280.11 for kernel 3.0.0-rc6-amd64 (x86_64) > Mon Jul 25 16:12:20 UTC 2011 > make: Entering directory `/var/lib/dkms/nvidia/280.11/build' > make -C /lib/modules/3.0.0-rc6-amd64/build M=`/bin/pwd` modules > make[1]: Entering directory `/usr/src/linux-headers-3.0.0-rc6-amd64' > CC [M] /var/lib/dkms/nvidia/280.11/build/nv.o > ... > > I cannot reproduce your problem in a clean environment. Are the > Makefiles in your kernel headers modified in some way? > I think it's not a problem in the nvidia packages. I had the same problem...it was something introduced in one of the latests versions of make. This attached quick patch fixed it for me... This should probably be reassinged to one of the kernel-headers packages, for example 'linux-headers-3.0.0-1-amd64' > > But rc6 is obsolete anyway. > > > Andreas > > > > _______________________________________________ > pkg-nvidia-devel mailing list > pkg-nvidia-de...@lists.alioth.debian.org > http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-nvidia-devel >
--- /usr/src/linux-headers-3.0.0-1-amd64/Makefile-old 2011-07-25 21:12:52.554079823 +0200 +++ /usr/src/linux-headers-3.0.0-1-amd64/Makefile 2011-07-25 21:14:50.342072676 +0200 @@ -7,5 +7,7 @@ all: @$(MAKE) $(MAKEARGS) $(cmd) Makefile:; -$(cmd) %/: all +$(cmd): all + @: +%/: all @: