From: Andrew Bartlett Date: Sun, 3 Nov 2019 22:52:27 +0000 (+1300) Subject: librpc: Do not include the ndr_table for libnet_join.idl and libnetapi.idl in the... X-Git-Tag: talloc-2.3.1~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e45e342624da1b7f5df42c34c6fdccf32fc7b0e2;p=thirdparty%2Fsamba.git librpc: Do not include the ndr_table for libnet_join.idl and libnetapi.idl in the global list These are not wire protocols, there are no structures to parse. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14191 Signed-off-by: Andrew Bartlett Signed-off-by: Douglas Bagnall Pair-progammed-with: Douglas Bagnall --- diff --git a/source3/librpc/idl/wscript_build b/source3/librpc/idl/wscript_build index 183226e5f9b..2c6ec49faec 100644 --- a/source3/librpc/idl/wscript_build +++ b/source3/librpc/idl/wscript_build @@ -5,10 +5,17 @@ import os topinclude=os.path.join(bld.srcnode.abspath(), 'librpc/idl') bld.SAMBA_PIDL_LIST('PIDL', - '''libnetapi.idl open_files.idl - perfcount.idl secrets.idl libnet_join.idl + '''open_files.idl + perfcount.idl secrets.idl smbXsrv.idl leases_db.idl ''', options='--includedir=%s --header --ndr-parser' % topinclude, output_dir='../gen_ndr') + +bld.SAMBA_PIDL_LIST('PIDL', + '''libnetapi.idl libnet_join.idl + ''', + options='--includedir=%s --header --ndr-parser' % topinclude, + output_dir='../gen_ndr', + generate_tables=False)