From 2fff27e27426ad059036da38c3f79dcd879a788a Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Thu, 20 Mar 2025 09:14:53 +0200 Subject: [PATCH] [#3731] Fixed missed concatenation in doc/sphinx/meson.build --- doc/sphinx/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx/meson.build b/doc/sphinx/meson.build index cc869cd446..c68edc220e 100644 --- a/doc/sphinx/meson.build +++ b/doc/sphinx/meson.build @@ -30,7 +30,7 @@ list = run_command(GRABBER, current_source_dir / 'arm', '*.rst', check: true) rst_arm_sources += list.stdout().strip().split('\n') list = run_command(GRABBER, current_source_dir / 'grammar', '*.rst', check: true) -rst_arm_sources = list.stdout().strip().split('\n') +rst_arm_sources += list.stdout().strip().split('\n') main_sources = rst_arm_sources + ['conf.py'] + static_sources