diff options
author | Günther Deschner <gd@samba.org> | 2011-08-31 12:43:57 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-08-31 12:55:42 +0200 |
commit | fea278bbed50cda5a41abae2ee750b3be889fc4c (patch) | |
tree | 6d503fa0564523f70f3cfa644149e42901b4f2c4 /source3/winbindd | |
parent | d292bc07104fe6dc90fb143e630f2e259fbcb7c7 (diff) | |
download | samba-fea278bbed50cda5a41abae2ee750b3be889fc4c.tar.gz samba-fea278bbed50cda5a41abae2ee750b3be889fc4c.tar.bz2 samba-fea278bbed50cda5a41abae2ee750b3be889fc4c.zip |
s3-waf: convert nss_info subsystem into a private library.
Guenther
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/wscript_build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/winbindd/wscript_build b/source3/winbindd/wscript_build index 12f1bf9f69..5b4b4f7697 100644 --- a/source3/winbindd/wscript_build +++ b/source3/winbindd/wscript_build @@ -129,10 +129,11 @@ bld.SAMBA3_MODULE('idmap_autorid', NSS_INFO_TEMPLATE_SRC = 'nss_info_template.c' NSS_INFO_SRC = 'nss_info.c' -bld.SAMBA3_SUBSYSTEM('nss_info', - source=NSS_INFO_SRC, - deps='samba-util', - vars=locals()) +bld.SAMBA3_LIBRARY('nss_info', + source=NSS_INFO_SRC, + deps='samba-util param', + vars=locals(), + private_library=True) bld.SAMBA3_MODULE('nss_info_template', subsystem='nss_info', |