1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-09 13:57:42 +03:00

Merge pull request #28548 from yuwata/meson-confext

meson: do not create dead systemd-confext symlink if sysext is disabled
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2023-07-28 08:46:27 +02:00 committed by GitHub
commit 96197e9ef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,8 @@
systemd_sysext_sources = files('sysext.c')
meson.add_install_script(meson_make_symlink,
rootbindir / 'systemd-sysext',
rootbindir / 'systemd-confext')
if conf.get('ENABLE_SYSEXT') == 1
meson.add_install_script(meson_make_symlink,
rootbindir / 'systemd-sysext',
rootbindir / 'systemd-confext')
endif