From 1054d38bc7a0280dd0910aff4db0a781512fe85e Mon Sep 17 00:00:00 2001 From: Robert Pluim Date: Thu, 16 Jun 2022 09:34:28 +0200 Subject: [PATCH] Fix check for window system with toolkit scrollbars * configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to condition. (Bug#55970) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5b86e909255..c91b7de322a 100644 --- a/configure.ac +++ b/configure.ac @@ -3436,7 +3436,7 @@ if test "${with_toolkit_scroll_bars}" != "no"; then AC_DEFINE(USE_TOOLKIT_SCROLL_BARS) USE_TOOLKIT_SCROLL_BARS=yes fi -elif test "${window_system}" != "x11" && "${window_system}" != "none"; then +elif test "${window_system}" != "x11" && test "${window_system}" != "none"; then AC_MSG_ERROR(Non-toolkit scroll bars are not implemented for your system) fi -- 2.39.2