diff options
author | Paolo Bonzini | 2021-10-13 13:19:00 +0200 |
---|---|---|
committer | Paolo Bonzini | 2022-02-21 10:35:54 +0100 |
commit | 5dc4618e781f36c4bea1b0cdd1bea75b48640c5a (patch) | |
tree | 27456281d3deb8947606d02f7023c6ac7be4f880 /configure | |
parent | meson, configure: move ntddscsi API check to meson (diff) | |
download | qemu-5dc4618e781f36c4bea1b0cdd1bea75b48640c5a.tar.gz qemu-5dc4618e781f36c4bea1b0cdd1bea75b48640c5a.tar.xz qemu-5dc4618e781f36c4bea1b0cdd1bea75b48640c5a.zip |
configure, meson: move CONFIG_IASL to a Meson option
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -2969,9 +2969,6 @@ echo "MESON=$meson" >> $config_host_mak echo "NINJA=$ninja" >> $config_host_mak echo "CC=$cc" >> $config_host_mak echo "HOST_CC=$host_cc" >> $config_host_mak -if $iasl -h > /dev/null 2>&1; then - echo "CONFIG_IASL=$iasl" >> $config_host_mak -fi echo "AR=$ar" >> $config_host_mak echo "AS=$as" >> $config_host_mak echo "CCAS=$ccas" >> $config_host_mak @@ -3189,6 +3186,7 @@ if test "$skip_meson" = no; then -Daudio_drv_list=$audio_drv_list \ -Ddefault_devices=$default_devices \ -Ddocdir="$docdir" \ + -Diasl="$($iasl -h >/dev/null 2>&1 && printf %s "$iasl")" \ -Dqemu_firmwarepath="$firmwarepath" \ -Dqemu_suffix="$qemu_suffix" \ -Dsmbd="$smbd" \ |