diff options
author | Alex Bennée | 2021-07-21 01:26:38 +0200 |
---|---|---|
committer | Alex Bennée | 2021-07-23 18:22:16 +0200 |
commit | 11bdcfcdd2ccad91dc3076c7de30803f32f7cdde (patch) | |
tree | ae017cc165b7a77d366c44efc5a39e6c5b03036b /configure | |
parent | docs: add a section on the generalities of vhost-user (diff) | |
download | qemu-11bdcfcdd2ccad91dc3076c7de30803f32f7cdde.tar.gz qemu-11bdcfcdd2ccad91dc3076c7de30803f32f7cdde.tar.xz qemu-11bdcfcdd2ccad91dc3076c7de30803f32f7cdde.zip |
configure: remove needless if leg
It was pointed out in review of the previous patch that the if leg
isn't needed as the for loop will not enter on an empty $device_archs.
Fixes: d1d5e9eefd ("configure: allow the selection of alternate config in the build")
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210720232703.10650-5-alex.bennee@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -5103,12 +5103,10 @@ if test "$skip_meson" = no; then echo "[properties]" >> $cross # unroll any custom device configs - if test -n "$device_archs"; then - for a in $device_archs; do - eval "c=\$devices_${a}" - echo "${a}-softmmu = '$c'" >> $cross - done - fi + for a in $device_archs; do + eval "c=\$devices_${a}" + echo "${a}-softmmu = '$c'" >> $cross + done test -z "$cxx" && echo "link_language = 'c'" >> $cross echo "[built-in options]" >> $cross |