From 3cfcae3cda7da23dc2e99671021ad752f398c4c4 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Mon, 31 Aug 2009 13:18:12 -0300 Subject: [PATCH] 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 --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 863bf58e8a..5232172f3f 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 -- 2.11.0