From c8636449b3cf68d3ba8446dcef3f6dbecf48c3e4 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Fri, 14 Sep 2018 17:41:09 +0200 Subject: [PATCH] build: meson: man files depend on common.ent --- man/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/man/meson.build b/man/meson.build index 044ddcaba4..929431668e 100644 --- a/man/meson.build +++ b/man/meson.build @@ -10,7 +10,7 @@ common_conf.set('NM_CONFIG_DEFAULT_MAIN_DHCP', config_dhcp_default) common = 'common.ent' -configure_file( +common_ent_file = configure_file( input: common + '.in', output: common, configuration: common_conf @@ -58,6 +58,7 @@ foreach man: mans input: input, output: output, command: xsltproc_options + [docbook_xls, '@INPUT@'], + depend_files: common_ent_file, install: true, install_dir: join_paths(nm_mandir, 'man' + man[1]) )