Fix check for window system with toolkit scrollbars

* configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to
condition.  (Bug#55970)
This commit is contained in:
Robert Pluim 2022-06-16 09:34:28 +02:00
parent b2b939e5a1
commit 1054d38bc7

View file

@ -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