aboutsummaryrefslogtreecommitdiff
blob: c30f82ee8b1b60b08d11293d2de2b150ffd6dd3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
man_pages_out = []
man_pages_in = [
    'java-config-2.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)