diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-07-03 16:51:05 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2024-07-03 17:25:26 +0200 |
commit | 732ed8a84e8b264fccd3f5c0fc68ec2894b6d8ea (patch) | |
tree | d0519bc6ea14ad56722e51ce614162ab1d3a5381 /meson.build | |
parent | hwdb: Add some HP IR cameras (diff) | |
download | systemd-732ed8a84e8b264fccd3f5c0fc68ec2894b6d8ea.tar.xz systemd-732ed8a84e8b264fccd3f5c0fc68ec2894b6d8ea.zip |
meson: rename libbasic to libbasic_static
Our variables for internal libraries are named 'libfoo' for the shared lib
variant, and 'libfoo_static' for the static lib variant. The only exception was
libbasic, because we didn't have a shared variant for it. But let's rename it
for consitency. This makes the build config easier to understand.
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 15bb11ecd4..074ed42a66 100644 --- a/meson.build +++ b/meson.build @@ -2082,7 +2082,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, @@ -2248,7 +2248,7 @@ nss_template = { 'link_with' : [ libsystemd_static, libshared_static, - libbasic, + libbasic_static, ], 'dependencies' : [ librt, |