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 9a79a004d7cf1952cf3f4178e099..2a3073da6bd818cc2391c1d8f515 100755 --- a/configure +++ b/configure @@ -4413,7 +4413,7 @@ fi # Only build s390-ccw bios if we're on s390x and the compiler has -march=z900 # or -march=z10 (which is the lowest architecture level that Clang supports) -if test "$cpu" = "s390x" ; then +if test "$cpu" = "s390x" && test "$softmmu" = yes ; then write_c_skeleton compile_prog "-march=z900" "" has_z900=$?