diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 12:57:56 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:25 +1100 |
commit | 5ecd87230e2a83f7925b519c596ddecb89674577 (patch) | |
tree | b7bbb5bad2c96e78e32f4543aeb0d704b1907959 /source4 | |
parent | 6ba86d8ca31635b16670c59e645ceacdb256c054 (diff) | |
download | samba-5ecd87230e2a83f7925b519c596ddecb89674577.tar.gz samba-5ecd87230e2a83f7925b519c596ddecb89674577.tar.bz2 samba-5ecd87230e2a83f7925b519c596ddecb89674577.zip |
s4-libcli: make LIBSAMBA-ERRORS a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/libcli/wscript_build | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/source4/libcli/wscript_build b/source4/libcli/wscript_build index dad292ed48..0acf8053ba 100644 --- a/source4/libcli/wscript_build +++ b/source4/libcli/wscript_build @@ -4,12 +4,13 @@ bld.RECURSE('ldap') bld.RECURSE('security') bld.RECURSE('wbclient') -bld.SAMBA_SUBSYSTEM('LIBSAMBA-ERRORS', - source='../../libcli/util/doserr.c util/errormap.c util/nterr.c', - public_headers='../../libcli/util/error.h ../../libcli/util/ntstatus.h ../../libcli/util/doserr.h ../../libcli/util/werror.h', - header_path='core', - deps='talloc' - ) +bld.SAMBA_LIBRARY('LIBSAMBA-ERRORS', + source='../../libcli/util/doserr.c util/errormap.c util/nterr.c', + public_headers='../../libcli/util/error.h ../../libcli/util/ntstatus.h ../../libcli/util/doserr.h ../../libcli/util/werror.h', + header_path='core', + deps='talloc', + private_library=True + ) bld.SAMBA_SUBSYSTEM('LIBSAMBA_TSOCKET', |