qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Don't build option roms on Mac OS X


From: quintela
Subject: [Qemu-devel] [PATCH] Don't build option roms on Mac OS X
Date: Fri, 17 Jul 2009 16:36:35 +0200

From: Juan Quintela <address@hidden>

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 <address@hidden>
---
 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





reply via email to

[Prev in Thread] Current Thread [Next in Thread]