From: Bruce Rogers Date: Tue, 28 May 2019 14:23:37 -0600 Subject: configure: only populate roms if softmmu Currently roms are mistakenly getting built in a linux-user only configuration. Add check for softmmu in all places where our list of roms is being added to. Signed-off-by: Bruce Rogers --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4f374b48890e7f1a868672f2fe49..9de240a6b3e7fb7d72b57353546a 100755 --- a/configure +++ b/configure @@ -5417,7 +5417,7 @@ if { test "$cpu" = "i386" || test "$cpu" = "x86_64"; } && \ fi # Only build s390-ccw bios if we're on s390x and the compiler has -march=z900 -if test "$cpu" = "s390x" ; then +if test "$cpu" = "s390x" && test "$softmmu" = yes ; then write_c_skeleton if compile_prog "-march=z900" ""; then roms="$roms s390-ccw"