Skip to content

Commit 2fff27e

Browse files
committed
[#3731] Fixed missed concatenation in doc/sphinx/meson.build
1 parent 438b9ba commit 2fff27e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/sphinx/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ list = run_command(GRABBER, current_source_dir / 'arm', '*.rst', check: true)
3030
rst_arm_sources += list.stdout().strip().split('\n')
3131

3232
list = run_command(GRABBER, current_source_dir / 'grammar', '*.rst', check: true)
33-
rst_arm_sources = list.stdout().strip().split('\n')
33+
rst_arm_sources += list.stdout().strip().split('\n')
3434

3535
main_sources = rst_arm_sources + ['conf.py'] + static_sources
3636

0 commit comments

Comments
 (0)