]> git.proxmox.com Git - mirror_lxc.git/commitdiff
src/lxc/meson.build: fix the static library path
authorSerge Hallyn <serge@hallyn.com>
Sat, 12 Nov 2022 00:20:37 +0000 (18:20 -0600)
committerSerge Hallyn <serge@hallyn.com>
Sat, 12 Nov 2022 00:20:37 +0000 (18:20 -0600)
Since switching to meson, liblxc.a is being shipped as liblxc_static.a.
Change it back to liblxc.a.

Signed-off-by: Serge Hallyn <serge@hallyn.com>
src/lxc/meson.build

index b4609e2038f5b5c04f1cc3c098990d648d873bb6..6d4c700973e39b3b7076bc57f0c309f5307bbfd9 100644 (file)
@@ -149,7 +149,7 @@ if want_selinux and libselinux.found()
 endif
 
 liblxc_static = static_library(
-    'lxc_static',
+    'lxc',
     liblxc_sources + include_sources + netns_ifaddrs_sources,
     install: true,
     include_directories: liblxc_includes,