diff options
-rw-r--r-- | source4/libcli/security/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/libcli/security/wscript_build b/source4/libcli/security/wscript_build index f06899e9d4..5df9c119a7 100644 --- a/source4/libcli/security/wscript_build +++ b/source4/libcli/security/wscript_build @@ -1,8 +1,9 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('LIBSECURITY_SESSION', - source='session.c', - autoproto='session_proto.h', - public_deps='LIBSECURITY' - ) +bld.SAMBA_LIBRARY('LIBSECURITY_SESSION', + source='session.c', + autoproto='session_proto.h', + public_deps='LIBSECURITY', + private_library=True + ) |