diff options
author | Luiz Capitulino | 2009-08-31 18:18:12 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-09-10 00:31:27 +0200 |
commit | 3cfcae3cda7da23dc2e99671021ad752f398c4c4 (patch) | |
tree | 0d1c7e99d61e2f402ccbc568d992f1e1002a9b84 /configure | |
parent | Fix compilation warnings when DEBUG_BUFFERED_FILE is defined (diff) | |
download | qemu-3cfcae3cda7da23dc2e99671021ad752f398c4c4.tar.gz qemu-3cfcae3cda7da23dc2e99671021ad752f398c4c4.tar.xz qemu-3cfcae3cda7da23dc2e99671021ad752f398c4c4.zip |
configure: fix Linux AIO detection
We should set $linux_aio to 'no' if detection failed, otherwise
its contents will be empty, which is a bug as we test for 'yes'
or 'no'.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1354,6 +1354,7 @@ EOF if test "$linux_aio" = "yes" ; then feature_not_found "linux AIO" fi + linux_aio=no fi fi |