diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-04-20 17:33:41 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2022-04-28 08:52:20 +0200 |
commit | 3730a7341f19cbadde4d12e214b7a82b9de01f75 (patch) | |
tree | 73a1c076bdbbb7efa8a3231d83a2312009996520 /migration | |
parent | 88b6e618fda51cd2cfe7931e480e86ff8005a7d7 (diff) |
meson, configure: move RDMA options to meson
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'migration')
-rw-r--r-- | migration/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/meson.build b/migration/meson.build index 8b5ca5c047..6880b61b10 100644 --- a/migration/meson.build +++ b/migration/meson.build @@ -27,7 +27,7 @@ softmmu_ss.add(files( 'tls.c', ), gnutls) -softmmu_ss.add(when: ['CONFIG_RDMA', rdma], if_true: files('rdma.c')) +softmmu_ss.add(when: rdma, if_true: files('rdma.c')) if get_option('live_block_migration').allowed() softmmu_ss.add(files('block.c')) endif |