librpc: Do not place the ndr_table for windows_event_ids.idl in the global list
authorAndrew Bartlett <abartlet@samba.org>
Sun, 3 Nov 2019 22:51:11 +0000 (11:51 +1300)
committerDouglas Bagnall <dbagnall@samba.org>
Wed, 13 Nov 2019 00:32:36 +0000 (00:32 +0000)
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>

librpc/idl/wscript_build

index e17a37255fa2e819034266f2b99bdb9a60150589..c9b19c4aac4dfe7efccd07ec39887509c2dc1347 100644 (file)
@@ -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',