From: Blue Swirl Date: Sun, 27 Sep 2009 14:35:44 +0000 (+0000) Subject: Don't compile roms if not building system targets X-Git-Tag: qemu-xen-4.2.0~5558 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b461cdc9b3a30ec43ef3bda1752b902b209abe27;p=qemu-xen.git Don't compile roms if not building system targets Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index 62dccd2678..8ac8b4dce5 100755 --- a/configure +++ b/configure @@ -1982,7 +1982,8 @@ echo "TOOLS=$tools" >> $config_host_mak # Mac OS X ships with a broken assembler roms= if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ - "$targetos" != "Darwin" ; then + "$targetos" != "Darwin" -a \ + `expr "$target_list" : ".*softmmu.*"` != 0 ; then roms="optionrom" fi echo "ROMS=$roms" >> $config_host_mak