mirror of
https://github.com/systemd/systemd
synced 2025-10-05 16:03:15 +02:00
[1] says: > Since 0.60.0 the name argument is optional and defaults to the basename of > the first output We specify >= 0.62 as the supported version, so drop the duplicate name in all cases where it is the same as outputs[0], i.e. almost all cases. [1] https://mesonbuild.com/Reference-manual_functions.html#custom_target
18 lines
495 B
Meson
18 lines
495 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)
|