From 2d2c4efcdeb3657bcf0239e3712802205e8ec3ca Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 23 Sep 2013 09:16:28 +0200 Subject: build: list sources of subsys PRINTBASE directly in def, remove vars=locals() Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett --- source3/wscript_build | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/wscript_build') diff --git a/source3/wscript_build b/source3/wscript_build index ad78979966..bd83777c1f 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,7 +3,6 @@ from samba_utils import * import samba_version, samba3 -PRINTBASE_SRC = '''printing/notify.c printing/printing_db.c''' PRINTBACKEND_SRC = '''printing/printing.c printing/nt_printing.c printing/nt_printing_tdb.c @@ -808,9 +807,8 @@ bld.SAMBA3_SUBSYSTEM('PROFILE', deps='samba-util') bld.SAMBA3_SUBSYSTEM('PRINTBASE', - source=PRINTBASE_SRC, - deps='samba-util tdb_compat', - vars=locals()) + source='''printing/notify.c printing/printing_db.c''', + deps='samba-util tdb_compat') bld.SAMBA3_SUBSYSTEM('PRINTBACKEND', source=PRINTBACKEND_SRC, -- cgit