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 /lib/util/wscript_build | |
parent | 2b4028359135058700456eb3720ece105611425f (diff) | |
download | samba-12e1fdf0899c8f9176f4a7e789faa2758c4eaa70.tar.gz samba-12e1fdf0899c8f9176f4a7e789faa2758c4eaa70.tar.bz2 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 'lib/util/wscript_build')
-rwxr-xr-x | lib/util/wscript_build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 82af65c010..553748a22e 100755 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -54,7 +54,8 @@ bld.SAMBA_LIBRARY('tevent-util', public_deps='tevent', public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h', header_path=[ ('*', 'util') ], - vnum='0.0.1' + pc_files=[], + vnum='0.0.1' ) |