1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/lib/krb5_wrap/wscript_build
Stefan Metzmacher 4b295b106c wscript: remove executable bits for all wscript* files
These files should not be executable.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Wed Jan 11 20:21:01 CET 2017 on sn-devel-144
2017-01-11 20:21:01 +01:00

12 lines
352 B
Python

#!/usr/bin/env python
add_deps = ''
if bld.CONFIG_SET('SAMBA4_USES_HEIMDAL'):
add_deps = ' asn1'
bld.SAMBA_LIBRARY('krb5samba',
source='krb5_samba.c gss_samba.c keytab_util.c enctype_convert.c',
deps='samba-util talloc krb5 com_err gssapi' + add_deps,
private_library=True
)