From: Jo Sutton Date: Thu, 1 Aug 2024 22:14:52 +0000 (+1200) Subject: ldb: Fix ldb public library header files being unusable X-Git-Tag: tdb-1.4.12~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5851ae555425ea2ba8e431162142ebae47be802e;p=thirdparty%2Fsamba.git ldb: Fix ldb public library header files being unusable An accidental negation means that ldb_version.h is not installed when ldb is built as a public library. This is a regression introduced by commit 625fb48326ec62a33ce0abdbfb0f6f3d33d7cc64. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15690 Signed-off-by: Jo Sutton Reviewed-by: Douglas Bagnall Autobuild-User(master): Douglas Bagnall Autobuild-Date(master): Sun Aug 4 01:35:55 UTC 2024 on atb-devel-224 --- diff --git a/lib/ldb/wscript b/lib/ldb/wscript index 51a8cef7b1e..87aa3bb6d77 100644 --- a/lib/ldb/wscript +++ b/lib/ldb/wscript @@ -174,7 +174,7 @@ def build(bld): dep_vars=['LDB_VERSION'], target='include/ldb_version.h', public_headers='include/ldb_version.h', - public_headers_install=not bld.env.ldb_is_public_library) + public_headers_install=bld.env.ldb_is_public_library) t.env.LDB_VERSION = LDB_VERSION bld.SAMBA_MODULE('ldb_asq',