From: Andreas Schneider Date: Wed, 13 Feb 2019 09:44:45 +0000 (+0100) Subject: waf: Do not install internal header X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=6d232f3f7c64f9b01439326e0e9b6d9df9a0bcbb waf: Do not install internal header We should not install header files without an public API: - memory.h - safe_strings.h - talloc_stack.h BUG: https://bugzilla.samba.org/show_bug.cgi?id=13778 Signed-off-by: Andreas Schneider Reviewed-by: Stefan Metzmacher --- diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 02ae378602f8..5ca72c5c03cf 100644 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -127,7 +127,23 @@ else: tftw.c''', deps='samba-util-core DYNCONFIG close-low-fd tiniparser genrand util_str_hex', public_deps='talloc tevent execinfo pthread LIBCRYPTO charset util_setid', - public_headers='debug.h attr.h byteorder.h data_blob.h discard.h memory.h safe_string.h time.h talloc_stack.h string_wrappers.h idtree.h idtree_random.h blocking.h signal.h substitute.h fault.h genrand.h tfork.h', + public_headers=''' + attr.h + byteorder.h + data_blob.h + debug.h + discard.h + time.h + string_wrappers.h + idtree.h + idtree_random.h + blocking.h + signal.h + substitute.h + fault.h + genrand.h + tfork.h + ''', header_path= [ ('dlinklist.h samba_util.h', '.'), ('*', 'util') ], local_include=False, vnum='0.0.1',