From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LIXzt-0002ij-P0 for qemu-devel@nongnu.org; Thu, 01 Jan 2009 19:34:41 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LIXzs-0002iX-0x for qemu-devel@nongnu.org; Thu, 01 Jan 2009 19:34:41 -0500 Received: from [199.232.76.173] (port=51200 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LIXzr-0002iU-TC for qemu-devel@nongnu.org; Thu, 01 Jan 2009 19:34:39 -0500 Received: from mtaout01-winn.ispmail.ntl.com ([81.103.221.47]:17726) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LIXzr-0001fd-FE for qemu-devel@nongnu.org; Thu, 01 Jan 2009 19:34:39 -0500 Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout01-winn.ispmail.ntl.com (InterMail vM.7.08.04.00 201-2186-134-20080326) with ESMTP id <20090102003438.BWXE2989.mtaout01-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com> for ; Fri, 2 Jan 2009 00:34:38 +0000 Received: from miranda.arrow ([213.107.23.205]) by aamtaout01-winn.ispmail.ntl.com (InterMail vG.2.02.00.01 201-2161-120-102-20060912) with ESMTP id <20090102003437.DPLX19264.aamtaout01-winn.ispmail.ntl.com@miranda.arrow> for ; Fri, 2 Jan 2009 00:34:37 +0000 Received: from sdb by miranda.arrow with local (Exim 4.63) (envelope-from ) id 1LIXzn-0004y0-7T for qemu-devel@nongnu.org; Fri, 02 Jan 2009 00:34:35 +0000 Date: Fri, 2 Jan 2009 00:34:34 +0000 From: Stuart Brady Message-ID: <20090102003434.GA19078@miranda.arrow> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] Fix and rearrange 'tarbin' Makefile rule 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 This patch fixes the 'tarbin' Makefile rule (which was broken due to a missing '\' for line-continuation), and also rearranges that rule to match the ordering that is used in the configure script, so that the list can be checked more easily, to avoid conflicts, etc. Signed-off-by: Stuart Brady Index: Makefile =================================================================== --- Makefile (revision 6146) +++ Makefile (working copy) @@ -314,39 +314,39 @@ tarbin: cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \ $(bindir)/qemu \ - $(bindir)/qemu-system-ppc \ - $(bindir)/qemu-system-ppc64 \ - $(bindir)/qemu-system-ppcemb \ - $(bindir)/qemu-system-sparc \ $(bindir)/qemu-system-x86_64 \ + $(bindir)/qemu-system-arm \ + $(bindir)/qemu-system-cris \ + $(bindir)/qemu-system-m68k \ $(bindir)/qemu-system-mips \ $(bindir)/qemu-system-mipsel \ $(bindir)/qemu-system-mips64 \ $(bindir)/qemu-system-mips64el \ - $(bindir)/qemu-system-arm \ - $(bindir)/qemu-system-m68k \ + $(bindir)/qemu-system-ppc \ + $(bindir)/qemu-system-ppcemb \ + $(bindir)/qemu-system-ppc64 \ $(bindir)/qemu-system-sh4 \ $(bindir)/qemu-system-sh4eb \ - $(bindir)/qemu-system-cris \ + $(bindir)/qemu-system-sparc \ $(bindir)/qemu-i386 \ $(bindir)/qemu-x86_64 \ - $(bindir)/qemu-arm \ - $(bindir)/qemu-armeb \ - $(bindir)/qemu-sparc \ - $(bindir)/qemu-sparc32plus \ - $(bindir)/qemu-sparc64 \ - $(bindir)/qemu-ppc \ - $(bindir)/qemu-ppc64 \ - $(bindir)/qemu-ppc64abi32 \ - $(bindir)/qemu-mips \ - $(bindir)/qemu-mipsel \ - $(bindir)/qemu-alpha \ - $(bindir)/qemu-m68k \ - $(bindir)/qemu-sh4 \ - $(bindir)/qemu-sh4eb \ - $(bindir)/qemu-cris \ - $(bindir)/qemu-img \ - $(bindir)/qemu-nbd \ + $(bindir)/qemu-alpha \ + $(bindir)/qemu-arm \ + $(bindir)/qemu-armeb \ + $(bindir)/qemu-cris \ + $(bindir)/qemu-m68k \ + $(bindir)/qemu-mips \ + $(bindir)/qemu-mipsel \ + $(bindir)/qemu-ppc \ + $(bindir)/qemu-ppc64 \ + $(bindir)/qemu-ppc64abi32 \ + $(bindir)/qemu-sh4 \ + $(bindir)/qemu-sh4eb \ + $(bindir)/qemu-sparc \ + $(bindir)/qemu-sparc64 \ + $(bindir)/qemu-sparc32plus \ + $(bindir)/qemu-img \ + $(bindir)/qemu-nbd \ $(datadir)/bios.bin \ $(datadir)/vgabios.bin \ $(datadir)/vgabios-cirrus.bin \ @@ -354,13 +354,14 @@ $(datadir)/video.x \ $(datadir)/openbios-sparc32 \ $(datadir)/openbios-sparc64 \ - $(datadir)/pxe-ne2k_pci.bin \ + $(datadir)/pxe-ne2k_pci.bin \ $(datadir)/pxe-rtl8139.bin \ - $(datadir)/pxe-pcnet.bin \ + $(datadir)/pxe-pcnet.bin \ $(datadir)/pxe-e1000.bin \ $(docdir)/qemu-doc.html \ $(docdir)/qemu-tech.html \ - $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 + $(mandir)/man1/qemu.1 \ + $(mandir)/man1/qemu-img.1 \ $(mandir)/man8/qemu-nbd.8 # Include automatically generated dependency files -- Stuart Brady