From: Günther Deschner Date: Wed, 8 Sep 2010 21:23:09 +0000 (+0200) Subject: s4-waf: fix bin/python/samba/dcerpc/nbt.so. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;ds=sidebyside;h=3fb5aba9cf59198dea3b43754dbe6b3ffb3ea474;p=abartlet%2Fsamba.git%2F.git s4-waf: fix bin/python/samba/dcerpc/nbt.so. Thanks to Brad Hards for pointing this out. Guenther --- diff --git a/source4/librpc/wscript_build b/source4/librpc/wscript_build index de0fc77060f..06bd8a77948 100755 --- a/source4/librpc/wscript_build +++ b/source4/librpc/wscript_build @@ -475,6 +475,10 @@ bld.SAMBA_SUBSYSTEM('RPC_NDR_SPOOLSS', public_deps='dcerpc NDR_SPOOLSS' ) +bld.SAMBA_SUBSYSTEM('RPC_NDR_NBT', + source='../../librpc/gen_ndr/ndr_nbt_c.c', + public_deps='dcerpc NDR_NBT' + ) bld.SAMBA_SUBSYSTEM('RPC_NDR_WKSSVC', source='../../librpc/gen_ndr/ndr_wkssvc_c.c', @@ -707,7 +711,7 @@ bld.SAMBA_PYTHON('python_atsvc', bld.SAMBA_PYTHON('python_dcerpc_nbt', source='../../librpc/gen_ndr/py_nbt.c', - deps='NDR_NBT PYTALLOC pyrpc_util', + deps='NDR_NBT RPC_NDR_NBT PYTALLOC pyrpc_util', realname='samba/dcerpc/nbt.so' )