From 095ece43a2edbdeb498e8bef07bdf09f9836bb40 Mon Sep 17 00:00:00 2001 From: Anoop C S Date: Sun, 8 Sep 2024 12:52:59 +0530 Subject: [PATCH] wscript_build: Do not link vfs_ceph_new against libcephfs vfs_ceph_new dynamically loads the appropriate libcephfs shared libraries which means that we don't statically link against it. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15703 Signed-off-by: Anoop C S Reviewed-by: Guenther Deschner --- source3/modules/wscript_build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/modules/wscript_build b/source3/modules/wscript_build index 85708100189..ce16d8c876c 100644 --- a/source3/modules/wscript_build +++ b/source3/modules/wscript_build @@ -542,7 +542,7 @@ bld.SAMBA3_MODULE('vfs_ceph', bld.SAMBA3_MODULE('vfs_ceph_new', subsystem='vfs', source='vfs_ceph_new.c', - deps='POSIXACL_XATTR samba-util cephfs', + deps='POSIXACL_XATTR samba-util', init_function='', internal_module=bld.SAMBA3_IS_STATIC_MODULE('vfs_ceph_new'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('vfs_ceph_new'), -- 2.47.3