diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-08-21 02:09:14 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-08-21 03:22:05 +0200 |
commit | 12e1fdf0899c8f9176f4a7e789faa2758c4eaa70 (patch) | |
tree | 237311dafdb5746ef6d14fbfa428ff3336d13458 /librpc | |
parent | 2b4028359135058700456eb3720ece105611425f (diff) | |
download | samba-12e1fdf0899c8f9176f4a7e789faa2758c4eaa70.tar.gz samba-12e1fdf0899c8f9176f4a7e789faa2758c4eaa70.tar.xz samba-12e1fdf0899c8f9176f4a7e789faa2758c4eaa70.zip |
wafsamba: Require public libraries to have a pc file specified, or explicitly specified that they don't need one.
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/wscript_build | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/librpc/wscript_build b/librpc/wscript_build index 444cb94671f..cf6c448646c 100644 --- a/librpc/wscript_build +++ b/librpc/wscript_build @@ -588,6 +588,7 @@ bld.SAMBA_LIBRARY('ndr', ) bld.SAMBA_LIBRARY('dcerpc-binding', - source='rpc/dcerpc_error.c rpc/binding.c rpc/dcerpc_util.c rpc/binding_handle.c', - deps='ndr tevent NDR_DCERPC LIBTSOCKET tevent-util', - vnum='0.0.1') + source='rpc/dcerpc_error.c rpc/binding.c rpc/dcerpc_util.c rpc/binding_handle.c', + deps='ndr tevent NDR_DCERPC LIBTSOCKET tevent-util', + pc_files=[], + vnum='0.0.1') |