diff options
author | Andrew Bartlett <abartlet@samba.org> | 2019-11-04 11:51:11 +1300 |
---|---|---|
committer | Douglas Bagnall <dbagnall@samba.org> | 2019-11-13 00:32:36 +0000 |
commit | 88c8cd7a1e7bc48a758bd00e91ca58ca91eed9d0 (patch) | |
tree | f92d61daa6e4385e2f14d4a5e3cdff5b16d1eb3c /librpc/idl | |
parent | 88373c472c52ddc1191c1c20e74bff7776d0e805 (diff) | |
download | samba-88c8cd7a1e7bc48a758bd00e91ca58ca91eed9d0.tar.gz |
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 <abartlet@samba.org>
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Pair-progammed-with: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/wscript_build | 9 |
1 files changed, 8 insertions, 1 deletions
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,13 +114,20 @@ 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', output_dir='../gen_ndr') |