From c3f001784aa3b9047c5598f83146bb2af32fc8a4 Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Mon, 2 Jun 2025 12:26:47 -0700 Subject: [PATCH] completion: Make sed command that generates config-list.h portable. The OpenBSD 'sed' command does not support '\n' to represent newlines in sed expressions. This leads to the follow compiler error: In file included from builtin/help.c:15: ./config-list.h:282:18: error: use of undeclared identifier 'n' "gitcvs.dbUser",n "gitcvs.dbPass", ^ 1 error generated. gmake: *** [Makefile:2821: builtin/help.o] Error 1 We can use a backslash followed by a newline to fix this. This portably issue was introduced in e1b81f54da (completion: take into account the formatting backticks for options, 2025-03-19) Signed-off-by: Collin Funk --- generate-configlist.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generate-configlist.sh b/generate-configlist.sh index b06da53c891819..e1f9e994881327 100755 --- a/generate-configlist.sh +++ b/generate-configlist.sh @@ -19,7 +19,8 @@ EOF s/::$//; s/`//g; s/^.*$/ "&",/; - s/, */",\n "/g; + s/, */",\ + "/g; p;}; d' \ "$SOURCE_DIR"/Documentation/*config.adoc \