commit 4e5537f325d89be60fba9c89b7224205f03bc09c
parent 113c45e554c8115c9f654a59976201b0df5e4623
Author: Evgeny Grin <k2k@drgrin.dev>
Date: Fri, 2 May 2025 09:02:35 +0300
configure: fixed over-quoting of configuration values descriptions
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -4631,7 +4631,7 @@ int main(void) {
AS_VAR_IF([mhd_cv_cc_func_param_arr_static_fixed],["yes"],
[
AC_DEFINE([HAVE_FUNC_PARAM_ARR_STATIC_FIXED],[1],
- [[Define to '1' if your compiler supports 'array[static N]' with fixed N as function parameter]]
+ [Define to '1' if your compiler supports 'array[static N]' with fixed N as function parameter]
)
]
)
@@ -4654,7 +4654,7 @@ int main(void) {
AS_VAR_IF([mhd_cv_cc_func_param_arr_static_var],["yes"],
[
AC_DEFINE([HAVE_FUNC_PARAM_ARR_STATIC_VAR],[1],
- [[Define to '1' if your compiler supports 'array[static N]' with variable N as a function parameter]]
+ [Define to '1' if your compiler supports 'array[static N]' with variable N as a function parameter]
)
]
)