diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2023-08-30 11:39:45 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-07 13:32:37 +0200 |
commit | 1f2146f7ca0f04afc62c4a170ec78bd030f3e72f (patch) | |
tree | d0b5a25c4f39e9ea2cdf38d230907fe3acbbdf90 /storage-daemon | |
parent | 73258b386489c410e4d449159a6c8420e3b7733f (diff) |
configure, meson: remove target OS symbols from config-host.mak
Stop applying config-host.mak to the sourcesets, since it does not
have any more CONFIG_* symbols coming from the command line.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'storage-daemon')
-rw-r--r-- | storage-daemon/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage-daemon/meson.build b/storage-daemon/meson.build index 49c9d2eac9..5e90cd32b4 100644 --- a/storage-daemon/meson.build +++ b/storage-daemon/meson.build @@ -5,7 +5,7 @@ qsd_ss.add(blockdev, chardev, qmp, qom, qemuutil, gnutls) subdir('qapi') if have_tools - qsd_ss = qsd_ss.apply(config_host, strict: false) + qsd_ss = qsd_ss.apply(config_targetos, strict: false) qsd = executable('qemu-storage-daemon', qsd_ss.sources(), dependencies: qsd_ss.dependencies(), |