From 27493e4f7aad59dd598c33ad7372feabb80ba821 Mon Sep 17 00:00:00 2001 From: Michael Tokarev Date: Wed, 27 Nov 2024 21:51:50 +0300 Subject: [PATCH] drop "replace" dependency from libldb Forwarded: not-needed When building as a sub-library within samba, where libreplace is a private library, libldb.so will have rpath pointing to the private samba dir. Since ldb actually does not use anything from libreplace, just remove the dependency. Gbp-Pq: Name ldb-no-replace.diff --- lib/ldb/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ldb/wscript b/lib/ldb/wscript index f234fa79..1bd3fee4 100644 --- a/lib/ldb/wscript +++ b/lib/ldb/wscript @@ -137,7 +137,7 @@ def build(bld): bld.SAMBA_LIBRARY('ldb', COMMON_SRC + ' ' + LDB_MAP_SRC, - deps='tevent LIBLDB_MAIN replace', + deps='tevent LIBLDB_MAIN', # replace', includes='include', public_headers=ldb_headers, public_headers_install=True, -- 2.30.2