diff options
Diffstat (limited to 'auth/wscript_build')
-rw-r--r-- | auth/wscript_build | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/auth/wscript_build b/auth/wscript_build index 75580fd299..0472a20a01 100644 --- a/auth/wscript_build +++ b/auth/wscript_build @@ -1,7 +1,8 @@ #!/usr/bin/env python -bld.SAMBA_SUBSYSTEM('auth_sam_reply', - source='auth_sam_reply.c', - deps='talloc', - autoproto='auth_sam_reply.h' - ) +bld.SAMBA_LIBRARY('auth_sam_reply', + source='auth_sam_reply.c', + deps='talloc security samba-util', + autoproto='auth_sam_reply.h', + private_library=True + ) |