summaryrefslogtreecommitdiffstats
path: root/src/binfmt/meson.build
blob: 44963409bc84b48426610464767c89d570b82b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: LGPL-2.1-or-later

executables += [
        libexec_template + {
                'name' : 'systemd-binfmt',
                'public' : true,
                'conditions' : ['ENABLE_BINFMT'],
                'sources' : files('binfmt.c'),
        },
]

if conf.get('ENABLE_BINFMT') == 1
        install_emptydir(binfmtdir)
        if install_sysconfdir
                install_emptydir(sysconfdir / 'binfmt.d')
        endif
endif