diff options
author | Blue Swirl | 2009-09-27 16:35:44 +0200 |
---|---|---|
committer | Blue Swirl | 2009-09-27 16:35:44 +0200 |
commit | b461cdc9b3a30ec43ef3bda1752b902b209abe27 (patch) | |
tree | bccb2d0c264b09cddfad0442661b527b39711301 /configure | |
parent | Fix user emulator breakage (diff) | |
download | qemu-b461cdc9b3a30ec43ef3bda1752b902b209abe27.tar.gz qemu-b461cdc9b3a30ec43ef3bda1752b902b209abe27.tar.xz qemu-b461cdc9b3a30ec43ef3bda1752b902b209abe27.zip |
Don't compile roms if not building system targets
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |