1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

talloc/wscript: avoid passing pointless enabled=True to SAMBA_PYTHON()

This is the default and should not be passed explicitly.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Wed Feb  1 18:16:58 CET 2017 on sn-devel-144

(cherry picked from commit 3fe1f06278ce90d8c6a882c6703f583923615117)
This commit is contained in:
Stefan Metzmacher 2017-01-29 15:52:30 +01:00 committed by Karolin Seeger
parent d96ce9cfca
commit d5f579ee75

View File

@ -141,13 +141,11 @@ def build(bld):
bld.SAMBA_PYTHON('pytalloc',
'pytalloc.c',
deps='talloc ' + name,
enabled=True,
realname='talloc.so')
bld.SAMBA_PYTHON('test_pytalloc',
'test_pytalloc.c',
deps='pytalloc',
enabled=True,
realname='_test_pytalloc.so',
install=False)