diff options
author | Günther Deschner <gd@samba.org> | 2011-01-28 14:02:55 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-08 14:50:54 +0100 |
commit | 4086c1e382a22f08a5b138bb6617451de2042ad9 (patch) | |
tree | 1f3a56df209154466e95f4f90128489e50a22aaf | |
parent | 56fe080d87952c6f1f1175444327769c67c55167 (diff) | |
download | samba-4086c1e382a22f08a5b138bb6617451de2042ad9.tar.gz samba-4086c1e382a22f08a5b138bb6617451de2042ad9.tar.bz2 samba-4086c1e382a22f08a5b138bb6617451de2042ad9.zip |
s4-waf: split out wscript_build for ndrdump binary.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Tue Feb 8 14:50:54 CET 2011 on sn-devel-104
-rw-r--r-- | librpc/tools/wscript_build | 7 | ||||
-rwxr-xr-x | source4/librpc/wscript_build | 9 |
2 files changed, 8 insertions, 8 deletions
diff --git a/librpc/tools/wscript_build b/librpc/tools/wscript_build new file mode 100644 index 0000000000..d1f0a26939 --- /dev/null +++ b/librpc/tools/wscript_build @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +bld.SAMBA_BINARY('ndrdump', + source='ndrdump.c', + manpages='ndrdump.1', + deps='samba-hostconfig samba-util popt POPT_SAMBA ndr-table errors' + ) diff --git a/source4/librpc/wscript_build b/source4/librpc/wscript_build index d0159bb37a..6087d84693 100755 --- a/source4/librpc/wscript_build +++ b/source4/librpc/wscript_build @@ -1,16 +1,9 @@ #!/usr/bin/env python bld.RECURSE('../../librpc/idl') +bld.RECURSE('../../librpc/tools') bld.RECURSE('idl') -bld.SAMBA_BINARY('ndrdump', - source='../../librpc/tools/ndrdump.c', - manpages='../../librpc/tools/ndrdump.1', - deps='samba-hostconfig samba-util popt POPT_SAMBA ndr-table errors' - ) - - - bld.SAMBA_SUBSYSTEM('NDR_SECURITY', source='../../librpc/gen_ndr/ndr_security.c ../../librpc/ndr/ndr_sec_helper.c gen_ndr/ndr_server_id.c', deps='ndr security', |