From 5df2cccc4956e53b56ba1613e36d64dc8057c508 Mon Sep 17 00:00:00 2001 From: Alois Wohlschlager Date: Sat, 5 Oct 2024 10:49:34 +0200 Subject: [PATCH] doc: install the HTML manual again In 0e6b3435a14a304b8833c27d2911de7ac4e731d4, installation of the HTML manual was accidentally dropped: setting install_dir on a custom_target only sets the directory where something is going to be installed if it is installed at all, but does not itself trigger installation. The latter has to be explicitly requested, which is just what we do here to get the manual back. Change-Id: Iff8b791de7e7cb4c8d747c2a9b1154b5fcc32fe0 --- doc/manual/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/manual/meson.build b/doc/manual/meson.build index 38aad55b5..35d94740c 100644 --- a/doc/manual/meson.build +++ b/doc/manual/meson.build @@ -126,6 +126,7 @@ manual = custom_target( 'manual', 'markdown', ], + install : true, install_dir : [ datadir / 'doc/nix', false,