]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
src/lxc/meson.build: fix the static library path 4225/head
authorSerge Hallyn <serge@hallyn.com>
Sat, 12 Nov 2022 00:20:37 +0000 (18:20 -0600)
committerScott Moser <smoser@brickies.net>
Tue, 22 Nov 2022 14:01:54 +0000 (09:01 -0500)
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>
(cherry picked from commit 64eb31d02d4933ad414239130df3dff45a0f6f91)

src/lxc/meson.build

index 86e86b87f6fc9236bb5741873689873e1b84e6eb..ad12c298f9a354179b817eec8d394e575a8d8906 100644 (file)
@@ -148,7 +148,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,