mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
When systemd is built with musl, nss modules are not supported, hence the file is not necessary. Let's not install the file.
24 lines
635 B
Meson
24 lines
635 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
factory_etc_dir = factorydir / 'etc'
|
|
|
|
custom_target(
|
|
input : 'locale.conf.in',
|
|
output : 'locale.conf',
|
|
command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
|
|
install : true,
|
|
install_dir : factory_etc_dir)
|
|
|
|
custom_target(
|
|
input : 'vconsole.conf.in',
|
|
output : 'vconsole.conf',
|
|
command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
|
|
install : true,
|
|
install_dir : factory_etc_dir)
|
|
|
|
if conf.get('ENABLE_NSS') == 1
|
|
install_data(
|
|
'nsswitch.conf',
|
|
install_dir : factory_etc_dir)
|
|
endif
|