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 /docs | |
parent | 73258b386489c410e4d449159a6c8420e3b7733f (diff) | |
download | qemu-1f2146f7ca0f04afc62c4a170ec78bd030f3e72f.zip qemu-1f2146f7ca0f04afc62c4a170ec78bd030f3e72f.tar.gz qemu-1f2146f7ca0f04afc62c4a170ec78bd030f3e72f.tar.bz2 |
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 'docs')
-rw-r--r-- | docs/devel/kconfig.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/kconfig.rst b/docs/devel/kconfig.rst index e3a544e..73f52de 100644 --- a/docs/devel/kconfig.rst +++ b/docs/devel/kconfig.rst @@ -316,6 +316,6 @@ variable:: host_kconfig = \ (have_tpm ? ['CONFIG_TPM=y'] : []) + \ - ('CONFIG_LINUX' in config_host ? ['CONFIG_LINUX=y'] : []) + \ + (targetos == 'linux' ? ['CONFIG_LINUX=y'] : []) + \ (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \ ... |