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 /src/sysusers | |
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 'src/sysusers')
-rw-r--r-- | src/sysusers/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysusers/meson.build b/src/sysusers/meson.build index 0f9c067d50..403d82a340 100644 --- a/src/sysusers/meson.build +++ b/src/sysusers/meson.build @@ -14,7 +14,7 @@ executables += [ 'sources' : files('sysusers.c'), 'c_args' : '-DSTANDALONE', 'link_with' : [ - libbasic, + libbasic_static, libshared_static, libsystemd_static, ], |