aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/howto
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-11-07 09:31:05 -0800
committerJunio C Hamano <gitster@pobox.com>2025-11-07 09:31:05 -0800
commitb30cf1f060b9e82f3a2cd88ea3762bf722ee440b (patch)
treedd45b85dfbcdbaa97e7384720164018230fc2358 /Documentation/howto
parentMerge branch 'tu/credential-wincred-makefile-update' into next (diff)
parentmeson: make GIT_HTML_PATH configurable (diff)
downloadgit-b30cf1f060b9e82f3a2cd88ea3762bf722ee440b.tar.gz
git-b30cf1f060b9e82f3a2cd88ea3762bf722ee440b.zip
Merge branch 'dk/meson-html-dir' into next
The build procedure based on meson learned to allow builders to specify the directory to install HTML documents. * dk/meson-html-dir: meson: make GIT_HTML_PATH configurable
Diffstat (limited to '')
-rw-r--r--Documentation/howto/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/howto/meson.build b/Documentation/howto/meson.build
index ece20244af..16b9056f24 100644
--- a/Documentation/howto/meson.build
+++ b/Documentation/howto/meson.build
@@ -35,7 +35,7 @@ doc_targets += custom_target(
output: 'howto-index.html',
depends: documentation_deps,
install: true,
- install_dir: get_option('datadir') / 'doc/git-doc',
+ install_dir: htmldir,
)
foreach howto : howto_sources
@@ -57,6 +57,6 @@ foreach howto : howto_sources
output: fs.stem(howto_stripped.full_path()) + '.html',
depends: documentation_deps,
install: true,
- install_dir: get_option('datadir') / 'doc/git-doc/howto',
+ install_dir: htmldir / 'howto',
)
endforeach