]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
librpc: Do not include the ndr_table for libnet_join.idl and libnetapi.idl in the...
authorAndrew Bartlett <abartlet@samba.org>
Sun, 3 Nov 2019 22:52:27 +0000 (11:52 +1300)
committerDouglas Bagnall <dbagnall@samba.org>
Wed, 13 Nov 2019 00:32:36 +0000 (00:32 +0000)
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 <abartlet@samba.org>
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Pair-progammed-with: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>

source3/librpc/idl/wscript_build

index 183226e5f9bc299dfe8b6f8691a8cd0f9f10f492..2c6ec49faec1020b7c6be7cd85ec47d715147887 100644 (file)
@@ -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)