diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 14:54:11 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:26 +1100 |
commit | b4dd1accc8178bed96ab8606dc655d30826886e6 (patch) | |
tree | 47ea64b482764d6e5074a5d885a79c30359cd71b /source4/librpc/wscript_build | |
parent | 3981399957a8f2d608adb33e9ced1c50bcb1f5dc (diff) | |
download | samba-b4dd1accc8178bed96ab8606dc655d30826886e6.tar.gz samba-b4dd1accc8178bed96ab8606dc655d30826886e6.tar.bz2 samba-b4dd1accc8178bed96ab8606dc655d30826886e6.zip |
s4-waf: don't depend directly on python modules
build rules should not list dependencies on python modules. Instead,
if code needs the module it should use the python API import calls to
access the module.
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/librpc/wscript_build')
-rwxr-xr-x | source4/librpc/wscript_build | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/librpc/wscript_build b/source4/librpc/wscript_build index 92af95ea4d..88deeb2bea 100755 --- a/source4/librpc/wscript_build +++ b/source4/librpc/wscript_build @@ -182,10 +182,10 @@ bld.SAMBA_LIBRARY('dcerpc', ) bld.SAMBA_SUBSYSTEM('pyrpc_util', - source='rpc/pyrpc_util.c', - public_deps='PYTALLOC pyparam_util pycredentials dcerpc', - pyext=True, - ) + source='rpc/pyrpc_util.c', + public_deps='PYTALLOC pyparam_util dcerpc', + pyext=True, + ) bld.SAMBA_PYTHON('python_dcerpc', @@ -301,7 +301,7 @@ bld.SAMBA_PYTHON('python_irpc', bld.SAMBA_PYTHON('python_winbind', source='gen_ndr/py_winbind.c', - deps='RPC_NDR_WINBIND PYTALLOC pyrpc_util python_netlogon', + deps='RPC_NDR_WINBIND PYTALLOC pyrpc_util', realname='samba/dcerpc/winbind.so' ) |