From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hd5JA-0004Z0-Kp for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:02:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hd5J9-0004Yo-Vs for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:02:24 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hd5J9-0004Yl-Sa for qemu-devel@nongnu.org; Sun, 15 Apr 2007 10:02:23 -0400 Received: from moutng.kundenserver.de ([212.227.126.179]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hd5Ee-0003us-33 for qemu-devel@nongnu.org; Sun, 15 Apr 2007 09:57:44 -0400 Received: from localhost ([127.0.0.1]) by localhost.localdomain with esmtp (Exim 4.63) (envelope-from ) id 1Hd5Eb-0001HU-4k for qemu-devel@nongnu.org; Sun, 15 Apr 2007 15:57:41 +0200 Message-ID: <46222F54.3080702@weilnetz.de> Date: Sun, 15 Apr 2007 15:57:40 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [Patch] Makefile.target Content-Type: multipart/mixed; boundary="------------080103000403060603060702" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers This is a multi-part message in MIME format. --------------080103000403060603060702 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit This small patch for Makefile.target fixes a very special build issue: make distclean # (only needed to remove files left from earlier builds) ./configure make -C i386-softmmu # (or any other system emulation) will try to build the missing dyngen and fail because dyngen is normally build by the root Makefile. The patch adds a rule for dyngen which simply calls "make dyngen" in the root directory. Stefan --------------080103000403060603060702 Content-Type: text/x-diff; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" Index: Makefile.target =================================================================== RCS file: /sources/qemu/qemu/Makefile.target,v retrieving revision 1.160 diff -u -b -B -r1.160 Makefile.target --- Makefile.target 11 Apr 2007 22:46:06 -0000 1.160 +++ Makefile.target 15 Apr 2007 12:26:55 -0000 @@ -540,6 +540,9 @@ translate-op.o: translate-all.c op.h opc.h cpu.h +$(DYNGEN): + make -C .. dyngen$(EXESUF) + op.h: op.o $(DYNGEN) $(DYNGEN) -o $@ $< --------------080103000403060603060702--