talloc/wscript: avoid passing pointless enabled=True to SAMBA_PYTHON()
authorStefan Metzmacher <metze@samba.org>
Sun, 29 Jan 2017 14:52:30 +0000 (15:52 +0100)
committerAndreas Schneider <asn@cryptomilk.org>
Wed, 1 Feb 2017 17:16:58 +0000 (18:16 +0100)
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

lib/talloc/wscript

index 41f3be7fe41bcc07657d98e2cc1554583a6ef6bd..8ce4f590a4aebf7f4f99e80018891b6d2f0072a8 100644 (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)