From: Robert Pluim Date: Thu, 16 Jun 2022 07:34:28 +0000 (+0200) Subject: Fix check for window system with toolkit scrollbars X-Git-Tag: emacs-29.0.90~1447^2~1717 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1054d38bc7a0280dd0910aff4db0a781512fe85e;p=emacs.git Fix check for window system with toolkit scrollbars * configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to condition. (Bug#55970) --- 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