From 88c8cd7a1e7bc48a758bd00e91ca58ca91eed9d0 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 4 Nov 2019 11:51:11 +1300 Subject: [PATCH] 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 --- librpc/idl/wscript_build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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', -- 2.47.3