From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IAr5t-0006HA-Po for qemu-devel@nongnu.org; Tue, 17 Jul 2007 13:44:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IAr5s-0006FN-42 for qemu-devel@nongnu.org; Tue, 17 Jul 2007 13:44:17 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IAr5r-0006FC-V5 for qemu-devel@nongnu.org; Tue, 17 Jul 2007 13:44:16 -0400 Received: from aybabtu.com ([69.60.117.155]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IAr5r-00080O-Jd for qemu-devel@nongnu.org; Tue, 17 Jul 2007 13:44:15 -0400 Received: from [192.168.10.6] (helo=aragorn) by aybabtu.com with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1IAr5o-0001Ro-Is for qemu-devel@nongnu.org; Tue, 17 Jul 2007 19:44:13 +0200 Received: from rmh by aragorn with local (Exim 4.63) (envelope-from ) id 1IAr8G-0004xD-EC for qemu-devel@nongnu.org; Tue, 17 Jul 2007 19:46:44 +0200 Date: Tue, 17 Jul 2007 19:46:44 +0200 From: Robert Millan Message-ID: <20070717174644.GA19005@aragorn> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline Subject: [Qemu-devel] [PATCH] fix build error Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline This appears to be a remnant of when kqemu was non-free. It broke build for me (not sure under which conditions it can be reproduced, but the fix is obvious, see the patch). -- Robert Millan My spam trap is honeypot@aybabtu.com. Note: this address is only intended for spam harvesters. Writing to it will get you added to my black list. --cWoXeonUoKmBZSoM Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="kqemu_free_module.diff" diff -ur kqemu-1.3.0~pre11.old/Makefile kqemu-1.3.0~pre11/Makefile --- kqemu-1.3.0~pre11.old/Makefile 2007-07-17 19:37:57.000000000 +0200 +++ kqemu-1.3.0~pre11/Makefile 2007-07-17 19:36:52.000000000 +0200 @@ -90,9 +90,9 @@ # called from 2.6 kernel kbuild obj-m:= kqemu.o -kqemu-objs:= kqemu-linux.o kqemu-mod.o +kqemu-objs:= kqemu-linux.o kqemu-mod-$(ARCH).o -$(obj)/kqemu-mod.o: $(src)/kqemu-mod-$(ARCH).o - cp $< $@ +$(obj)/kqemu-mod-$(ARCH).o: + $(MAKE) -C $(obj)/common endif endif # PATCHLEVEL --cWoXeonUoKmBZSoM--