Re: [PATCH 3/3] contrib/subtree: rename .txt to .adoc
From: Patrick Steinhardt <hidden>
Date: 2025-02-28 08:13:23
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Patrick Steinhardt <hidden>
Date: 2025-02-28 08:13:23
Subsystem:
the rest · Maintainer:
Linus Torvalds
On Thu, Feb 27, 2025 at 10:47:06PM -0500, Todd Zullinger wrote:
The .txt extensions were changed to .adoc in 1f010d6bdf (doc: use .adoc extension for AsciiDoc files, 2025-01-20).
Same here, we also need the following change on top:
diff --git a/contrib/subtree/meson.build b/contrib/subtree/meson.build
index a752a188df1..9c72b236259 100644
--- a/contrib/subtree/meson.build
+++ b/contrib/subtree/meson.build@@ -32,7 +32,7 @@ if get_option('docs').contains('man') '@INPUT@', ], depends: documentation_deps, - input: 'git-subtree.txt', + input: 'git-subtree.adoc', output: 'git-subtree.xml', )
@@ -63,7 +63,7 @@ if get_option('docs').contains('html') '@INPUT@', ], depends: documentation_deps, - input: 'git-subtree.txt', + input: 'git-subtree.adoc', output: 'git-subtree.html', install: true, install_dir: get_option('datadir') / 'doc/git-doc',
Patrick