From d6e9d1ba68148060d5614145eb566b94fc0d532f Mon Sep 17 00:00:00 2001 From: Ian Hilt <279639+ihilt@users.noreply.github.com> Date: Fri, 2 Dec 2022 16:39:43 -0500 Subject: [PATCH] meson.build: fix start-of-line_comment_prefix variable name (#149) --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 3d09269..f810525 100644 --- a/meson.build +++ b/meson.build @@ -27,7 +27,7 @@ else endif sol_comment_prefix = get_option('start-of-line_comment_prefix') if sol_comment_prefix != ';#' - arg_static += ['-DINI_START_COMMENT_PREFIXES="' + start-of-line_comment_prefix + '"'] + arg_static += ['-DINI_START_COMMENT_PREFIXES="' + sol_comment_prefix + '"'] endif if get_option('allow_no_value') arg_static += ['-DINI_ALLOW_NO_VALUE=1']