blob: aa888f7563ba869fa6859f4b8690751da092950b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
man_pages_out = []
man_pages_in = [
'ebump.1',
'eclean.1',
'enalyze.1',
'epkginfo.1',
'equery.1',
'eread.1',
'eshowkw.1',
'euse.1',
'imlate.1',
'revdep-rebuild.1',
]
foreach man_page : man_pages_in
man_pages_out += configure_file(
input : man_page,
output : man_page,
configuration : conf_data
)
endforeach
install_man(man_pages_out)
|