From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MRoZx-0006eF-4t for qemu-devel@nongnu.org; Fri, 17 Jul 2009 10:38:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MRoZs-0006aa-KU for qemu-devel@nongnu.org; Fri, 17 Jul 2009 10:38:28 -0400 Received: from [199.232.76.173] (port=58542 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MRoZs-0006aR-1V for qemu-devel@nongnu.org; Fri, 17 Jul 2009 10:38:24 -0400 Received: from mx2.redhat.com ([66.187.237.31]:47224) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MRoZr-0008Cp-Hr for qemu-devel@nongnu.org; Fri, 17 Jul 2009 10:38:23 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6HEcMB0011802 for ; Fri, 17 Jul 2009 10:38:22 -0400 From: quintela@redhat.com Date: Fri, 17 Jul 2009 16:36:35 +0200 Message-Id: <1247841395-10556-1-git-send-email-quintela@redhat.com> In-Reply-To: <1247836368-21369-1-git-send-email-agraf@suse.de> References: <1247836368-21369-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH] Don't build option roms on Mac OS X List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Juan Quintela From: Juan Quintela Hi Alex Do you mean to use this other patch? It avoids the use of a new variable to achieve exactly the same thing. I am cleaning up configure, and removing the not needed variables. Thanks, Juan. Signed-off-by: Juan Quintela --- configure | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure b/configure index ff241d9..6f8abb0 100755 --- a/configure +++ b/configure @@ -1831,8 +1831,10 @@ if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then fi echo "TOOLS=$tools" >> $config_host_mak +# Mac OS X ships with a broken assembler roms= -if test "$cpu" = "i386" -o "$cpu" = "x86_64" ; then +if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ + "$targetos" != "Darwin" ; then roms="pc-bios/optionrom" fi echo "ROMS=$roms" >> $config_host_mak -- 1.6.2.5