diff options
author | Paolo Bonzini | 2020-11-20 12:14:42 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-01-02 21:03:36 +0100 |
commit | 21c7843d82c82c1d6e06c2d005764ac4951f8f77 (patch) | |
tree | 7fe8044c9d89505a61c5356f87798c01dceb2bbf /configure | |
parent | meson: cleanup Kconfig.host handling (diff) | |
download | qemu-21c7843d82c82c1d6e06c2d005764ac4951f8f77.tar.gz qemu-21c7843d82c82c1d6e06c2d005764ac4951f8f77.tar.xz qemu-21c7843d82c82c1d6e06c2d005764ac4951f8f77.zip |
configure: remove useless code to check for Xen PCI passthrough
meson.build is already doing the same check, so remove it from
configure.
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -2878,18 +2878,6 @@ EOF fi fi -if test "$xen_pci_passthrough" != "disabled"; then - if test "$xen" = "enabled" && test "$linux" = "yes"; then - xen_pci_passthrough=enabled - else - if test "$xen_pci_passthrough" = "enabled"; then - error_exit "User requested feature Xen PCI Passthrough" \ - " but this feature requires /sys from Linux" - fi - xen_pci_passthrough=disabled - fi -fi - ########################################## # X11 probe if $pkg_config --exists "x11"; then |