From: Luiz Capitulino Date: Mon, 31 Aug 2009 16:18:12 +0000 (-0300) Subject: configure: fix Linux AIO detection X-Git-Tag: v0.12.0-rc0~1231 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3cfcae3cda7da23dc2e99671021ad752f398c4c4;p=thirdparty%2Fqemu.git 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 Signed-off-by: Anthony Liguori --- diff --git a/configure b/configure index 863bf58e8a7..5232172f3f0 100755 --- a/configure +++ b/configure @@ -1354,6 +1354,7 @@ EOF if test "$linux_aio" = "yes" ; then feature_not_found "linux AIO" fi + linux_aio=no fi fi