summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2024-07-08 12:46:41 +0200
committerGitHub <noreply@github.com>2024-07-08 12:46:41 +0200
commitc80c5c20d44e9a0cd56d533604ef1b759efeab3f (patch)
tree6340837d74cb11c98ead24feba25568678eec6e0 /meson.build
parentUpdate 60-sensor.hwdb (diff)
parentmeson: add option to build systemd-executor "statically" (diff)
downloadsystemd-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.build4
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,