From f307d0fbcd0449eb0ebd5c29da884166537857b2 Mon Sep 17 00:00:00 2001
From: Eli Schwartz <eschwartz93@gmail.com>
Date: Sun, 26 Nov 2023 19:24:27 -0500
Subject: [PATCH 3/4] ax_have_qt: fix documentation bug for QMAKE description

Fallout from commit c76565884702b1ef663e66a17023b42032d397d3. Using
shell quotes around autoconf macro parameters leads to literal
double-quote chars appearing in ./configure --help output, in this case.
---
 m4/ax_have_qt.m4 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/m4/ax_have_qt.m4 b/m4/ax_have_qt.m4
index 95d4940..fdb4c9c 100644
--- a/m4/ax_have_qt.m4
+++ b/m4/ax_have_qt.m4
@@ -66,7 +66,7 @@ AC_DEFUN([AX_HAVE_QT],
   # openSUSE leap 15.3 installs qmake-qt5, not qmake, for example.
   # Store the full name (like qmake-qt5) into QMAKE
   # and the specifier (like -qt5 or empty) into am_have_qt_qmexe_suff.
-  AC_ARG_VAR([QMAKE],"Qt make tool")
+  AC_ARG_VAR([QMAKE],[Qt make tool])
   AC_CHECK_TOOLS([QMAKE],[qmake qmake-qt6 qmake-qt5],[false])
 
   AC_MSG_CHECKING(for Qt)
-- 
2.41.0

