mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
8f04a1ca2b
GIT_VERSION is not available as a config.h variable, because it's rendered into version.h during builds. Let's rework jinja2 rendering to also parse version.h. No functional change, the new variable is so far unused. I guess this will make partial rebuilds a bit slower, but it's useful to be able to use the full version string.
9 lines
284 B
Meson
9 lines
284 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
custom_target(
|
|
'README',
|
|
input : 'README.in',
|
|
output : 'README',
|
|
command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'],
|
|
install : conf.get('HAVE_SYSV_COMPAT') == 1,
|
|
install_dir : sysvinit_path)
|