We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bae364f + f64f8c7 commit d001927Copy full SHA for d001927
2 files changed
doc/list-pre-compiled.sh
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+
3
+for i in man/*.2; do
4
+ echo $i
5
+done
doc/meson.build
@@ -85,7 +85,10 @@ if want_docs != 'false'
85
endforeach
86
else
87
if want_docs == 'all' or want_docs == 'man'
88
- install_subdir('man', install_dir: mandir)
+ list_pre_compiled = find_program('list-pre-compiled.sh')
89
+ m = run_command(list_pre_compiled, check: true)
90
+ man_pages = m.stdout().strip().split('\n')
91
+ install_data(man_pages, install_dir: mandir)
92
endif
93
94
0 commit comments