]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix check for window system with toolkit scrollbars
authorRobert Pluim <rpluim@gmail.com>
Thu, 16 Jun 2022 07:34:28 +0000 (09:34 +0200)
committerRobert Pluim <rpluim@gmail.com>
Thu, 16 Jun 2022 07:36:30 +0000 (09:36 +0200)
* configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to
condition.  (Bug#55970)

configure.ac

index 5b86e9092558d0de815895872c1ddacc8d41b601..c91b7de322ad303ee99e1d4e4176e27fd2c24900 100644 (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