From ab52d2a703507daadf74eee2b2b385f3f826869c Mon Sep 17 00:00:00 2001 From: Andrew Jeffery Date: Fri, 13 Aug 2021 11:14:12 +0930 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2