From: Andrew Bartlett Date: Sun, 3 Nov 2019 22:51:11 +0000 (+1300) Subject: librpc: Do not place the ndr_table for windows_event_ids.idl in the global list X-Git-Tag: talloc-2.3.1~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88c8cd7a1e7bc48a758bd00e91ca58ca91eed9d0;p=thirdparty%2Fsamba.git librpc: Do not place the ndr_table for windows_event_ids.idl in the global list This is just a list of event IDs, 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/librpc/idl/wscript_build b/librpc/idl/wscript_build index e17a37255fa..c9b19c4aac4 100644 --- a/librpc/idl/wscript_build +++ b/librpc/idl/wscript_build @@ -114,12 +114,19 @@ bld.SAMBA_PIDL_LIST('PIDL', security.idl server_id.idl smb_acl.idl - windows_event_ids.idl xattr.idl ''', options='--header --ndr-parser --python', output_dir='../gen_ndr') +bld.SAMBA_PIDL_LIST('PIDL', + ''' + windows_event_ids.idl + ''', + options='--header --ndr-parser --python', + output_dir='../gen_ndr', + generate_tables=False) + bld.SAMBA_PIDL_LIST('PIDL', 'winbind.idl', options='--header --ndr-parser --samba3-ndr-server --client --python',