From b461cdc9b3a30ec43ef3bda1752b902b209abe27 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 27 Sep 2009 14:35:44 +0000 Subject: [PATCH] Don't compile roms if not building system targets Signed-off-by: Blue Swirl --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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