Don't build option roms on Mac OS X

Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Juan Quintela 2009-07-21 14:11:22 +02:00 committed by Anthony Liguori
parent fd9b906050
commit 161294d886
1 changed files with 3 additions and 1 deletions

4
configure vendored
View File

@ -1738,8 +1738,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