diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-07-08 12:46:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 12:46:41 +0200 |
commit | c80c5c20d44e9a0cd56d533604ef1b759efeab3f (patch) | |
tree | 6340837d74cb11c98ead24feba25568678eec6e0 /meson.build | |
parent | Update 60-sensor.hwdb (diff) | |
parent | meson: add option to build systemd-executor "statically" (diff) | |
download | systemd-c80c5c20d44e9a0cd56d533604ef1b759efeab3f.tar.xz systemd-c80c5c20d44e9a0cd56d533604ef1b759efeab3f.zip |
Merge pull request #33599 from keszybz/link-executor-statically
Link executor statically
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 35d3de37a6..14a3960f88 100644 --- a/meson.build +++ b/meson.build @@ -2089,7 +2089,7 @@ libsystemd = shared_library( # Make sure our library is never deleted from memory, so that our open logging fds don't leak on dlopen/dlclose cycles. '-z', 'nodelete', '-Wl,--version-script=' + libsystemd_sym_path], - link_with : [libbasic], + link_with : [libbasic_static], link_whole : [libsystemd_static], dependencies : [librt, threads, @@ -2255,7 +2255,7 @@ nss_template = { 'link_with' : [ libsystemd_static, libshared_static, - libbasic, + libbasic_static, ], 'dependencies' : [ librt, |