From 90cf2208656c513b78a587e3e0f1f64144c0f209 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 3 Apr 2023 09:38:52 +0200 Subject: Merging upstream version 1.4. Signed-off-by: Daniel Baumann --- doc/meson.build | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'doc/meson.build') diff --git a/doc/meson.build b/doc/meson.build index 60a92ed..edbc3be 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -53,24 +53,17 @@ test('kdoc', kernel_doc_check, args: api_paths) if want_docs != 'false' - conf = configuration_data() - conf.set('SYSCONFDIR', sysconfdir) - if want_docs == 'all' or want_docs == 'man' mandir = join_paths(get_option('mandir'), 'man2') list_man_pages = find_program('list-man-pages.sh') if want_docs_build foreach apif : api_paths - subst = configure_file( - input: apif, - output: '@BASENAME@.subst', - configuration: conf) - c = run_command(list_man_pages, subst, check: true) + c = run_command(list_man_pages, apif, check: true) man_pages = c.stdout().split() foreach page : man_pages custom_target( page.underscorify() + '_man', - input: subst, + input: apif, output: page + '.2', capture: true, command: [kernel_doc, @@ -78,7 +71,7 @@ if want_docs != 'false' '-man', '-function', page, - subst], + apif], install: true, install_dir: mandir) endforeach -- cgit v1.2.3