diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-10-21 12:57:36 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-21 19:03:25 +1100 |
commit | 6ba86d8ca31635b16670c59e645ceacdb256c054 (patch) | |
tree | 1729c3fdfd3213e6d0faf0e16f3a8752949daa02 /source4/lib | |
parent | 47591ea5ec03916393d22484e3b551da033260ea (diff) | |
download | samba-6ba86d8ca31635b16670c59e645ceacdb256c054.tar.gz samba-6ba86d8ca31635b16670c59e645ceacdb256c054.tar.xz samba-6ba86d8ca31635b16670c59e645ceacdb256c054.zip |
s4-lib: make SMBPASSWD a private library
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/samba3/wscript_build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/lib/samba3/wscript_build b/source4/lib/samba3/wscript_build index 34a796ec15..699d150693 100644 --- a/source4/lib/samba3/wscript_build +++ b/source4/lib/samba3/wscript_build @@ -1,8 +1,9 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('SMBPASSWD', - source='smbpasswd.c', - deps='CHARSET LIBSAMBA-UTIL' - ) +bld.SAMBA_LIBRARY('SMBPASSWD', + source='smbpasswd.c', + deps='CHARSET LIBSAMBA-UTIL', + private_library=True + ) |