diff options
| author | Thomas Huth <thuth@redhat.com> | 2021-07-13 11:31:52 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2021-07-22 14:44:51 +0200 |
| commit | 332008e0b9da33dee2c765db3e4e16b3c3ba3a92 (patch) | |
| tree | f9c3d2f02b7555f3cfefacd616d070166c1c58c0 | |
| parent | ac34711171f0b350d9125c46691744405b6a54ce (diff) | |
| download | focaccia-qemu-332008e0b9da33dee2c765db3e4e16b3c3ba3a92.tar.gz focaccia-qemu-332008e0b9da33dee2c765db3e4e16b3c3ba3a92.zip | |
configure: Fix --without-default-features propagation to meson
A typo prevents that many features get disabled when the user runs "configure" with the --without-default-features switch. Reported-by: Cole Robinson <crobinso@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <20210713093155.677589-2-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 026704f15a..19c4bc1192 100755 --- a/configure +++ b/configure @@ -5206,7 +5206,7 @@ if test "$skip_meson" = no; then -Ddocs=$docs -Dsphinx_build=$sphinx_build -Dinstall_blobs=$blobs \ -Dvhost_user_blk_server=$vhost_user_blk_server -Dmultiprocess=$multiprocess \ -Dfuse=$fuse -Dfuse_lseek=$fuse_lseek -Dguest_agent_msi=$guest_agent_msi -Dbpf=$bpf\ - $(if test "$default_features" = no; then echo "-Dauto_features=disabled"; fi) \ + $(if test "$default_feature" = no; then echo "-Dauto_features=disabled"; fi) \ -Dtcg_interpreter=$tcg_interpreter \ $cross_arg \ "$PWD" "$source_path" |