From: Andrew Jeffery Date: Fri, 13 Aug 2021 01:44:12 +0000 (+0930) Subject: configure: Fix 'flase' typo in bats dependency test X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab52d2a703507daadf74eee2b2b385f3f826869c;p=qemu-gpiodev%2Flibgpiod.git configure: Fix 'flase' typo in bats dependency test Hopefully this helps identify the failure early in confiure rather than late when the tests should be executed. Signed-off-by: Andrew Jeffery Signed-off-by: Bartosz Golaszewski --- diff --git a/configure.ac b/configure.ac index e0a917f..351d547 100644 --- a/configure.ac +++ b/configure.ac @@ -137,7 +137,7 @@ then if test "x$with_tools" = xtrue then AC_CHECK_PROG([has_bats], [bats], [true], [false]) - if test "x$has_bats" = "xflase" + if test "x$has_bats" = "xfalse" then AC_MSG_NOTICE(["bats not found - gpio-tools tests cannot be run]) fi