From 9a72317c4f761f3ff93f4b36c0c5c74864d6d5cc Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 8 Sep 2025 12:26:47 +0100 Subject: [PATCH] Check for vlock earlier to neaten output. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index eb849a21..3b23febe 100644 --- a/configure.ac +++ b/configure.ac @@ -988,13 +988,13 @@ AM_CONDITIONAL(IS_UNKNOWN, test "x$PLATFORM" = xunknown) # Set the default lock command DEFAULT_LOCK_CMD="lock -np" -AC_MSG_CHECKING(lock-command) if test "x$PLATFORM" = xlinux; then AC_CHECK_PROG(found_vlock, vlock, yes, no) if test "x$found_vlock" = xyes; then DEFAULT_LOCK_CMD="vlock" fi fi +AC_MSG_CHECKING(lock-command) AC_MSG_RESULT($DEFAULT_LOCK_CMD) AC_SUBST(DEFAULT_LOCK_CMD)