From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JkVpw-0001kY-IS for qemu-devel@nongnu.org; Fri, 11 Apr 2008 22:51:28 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JkVpv-0001iy-1X for qemu-devel@nongnu.org; Fri, 11 Apr 2008 22:51:28 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JkVpu-0001ii-SE for qemu-devel@nongnu.org; Fri, 11 Apr 2008 22:51:26 -0400 Received: from mtaout01-winn.ispmail.ntl.com ([81.103.221.47]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JkVpu-00022h-Iu for qemu-devel@nongnu.org; Fri, 11 Apr 2008 22:51:26 -0400 Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout01-winn.ispmail.ntl.com with ESMTP id <20080412025423.ULTC13584.mtaout01-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com> for ; Sat, 12 Apr 2008 03:54:23 +0100 Received: from miranda.arrow ([213.107.26.151]) by aamtaout01-winn.ispmail.ntl.com with ESMTP id <20080412025524.VSBX219.aamtaout01-winn.ispmail.ntl.com@miranda.arrow> for ; Sat, 12 Apr 2008 03:55:24 +0100 Received: from sdb by miranda.arrow with local (Exim 4.63) (envelope-from ) id 1JkVpr-0008Dn-2i for qemu-devel@nongnu.org; Sat, 12 Apr 2008 03:51:23 +0100 Date: Sat, 12 Apr 2008 03:51:23 +0100 From: Stuart Brady Message-ID: <20080412025122.GA31589@miranda.arrow> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] configure target_list cleanup 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 Hi, The included patch splits the setting of target_list into one line for each target, so that any changes to this list are easier to examine, and to avoid merge conflicts. Incidentally, the new ordering makes it easier to determine the progress of a build, based on the name of the target that is currently building. diff -urN qemu-orig/configure qemu-new/configure --- qemu-orig/configure 2008-04-12 03:35:12.000000000 +0100 +++ qemu-new/configure 2008-04-12 02:51:27.000000000 +0100 @@ -536,16 +536,47 @@ if test -z "$target_list" ; then # these targets are portable if [ "$softmmu" = "yes" ] ; then - target_list="i386-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu mips64-softmmu mips64el-softmmu arm-softmmu ppc-softmmu ppcemb-softmmu ppc64-softmmu m68k-softmmu sh4-softmmu sh4eb-softmmu cris-softmmu" + target_list="$target_list i386-softmmu" + target_list="$target_list x86_64-softmmu" + target_list="$target_list arm-softmmu" + target_list="$target_list cris-softmmu" + target_list="$target_list m68k-softmmu" + target_list="$target_list mips-softmmu" + target_list="$target_list mipsel-softmmu" + target_list="$target_list mips64-softmmu" + target_list="$target_list mips64el-softmmu" + target_list="$target_list ppc-softmmu" + target_list="$target_list ppcemb-softmmu" + target_list="$target_list ppc64-softmmu" + target_list="$target_list sh4-softmmu" + target_list="$target_list sh4eb-softmmu" + target_list="$target_list sparc-softmmu" fi # the following are Linux specific if [ "$linux_user" = "yes" ] ; then - target_list="i386-linux-user arm-linux-user armeb-linux-user sparc-linux-user sparc64-linux-user sparc32plus-linux-user mips-linux-user mipsel-linux-user m68k-linux-user alpha-linux-user sh4-linux-user sh4eb-linux-user ppc-linux-user ppc64-linux-user ppc64abi32-linux-user x86_64-linux-user cris-linux-user $target_list" + target_list="$target_list i386-linux-user" + target_list="$target_list x86_64-linux-user" + target_list="$target_list alpha-linux-user" + target_list="$target_list arm-linux-user" + target_list="$target_list armeb-linux-user" + target_list="$target_list cris-linux-user" + target_list="$target_list m68k-linux-user" + target_list="$target_list mips-linux-user" + target_list="$target_list mipsel-linux-user" + target_list="$target_list ppc-linux-user" + target_list="$target_list ppc64-linux-user" + target_list="$target_list ppc64abi32-linux-user" + target_list="$target_list sh4-linux-user" + target_list="$target_list sh4eb-linux-user" + target_list="$target_list sparc-linux-user" + target_list="$target_list sparc64-linux-user" + target_list="$target_list sparc32plus-linux-user" fi # the following are Darwin specific if [ "$darwin_user" = "yes" ] ; then - target_list="i386-darwin-user ppc-darwin-user $target_list" + target_list="$target_list i386-darwin-user ppc-darwin-user" fi + target_list=`echo "$target_list" | sed -e 's/^ //g'` else target_list=`echo "$target_list" | sed -e 's/,/ /g'` fi Cheers, -- Stuart Brady