diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:17:18 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:30 +0200 |
commit | 95ab312169f12d086ac1664d86a3485308d0c9f5 (patch) | |
tree | 41c8a8a86687f1559112b34ece1c1092783d328f /source3 | |
parent | 2d2c4efcdeb3657bcf0239e3712802205e8ec3ca (diff) | |
download | samba-95ab312169f12d086ac1664d86a3485308d0c9f5.tar.gz samba-95ab312169f12d086ac1664d86a3485308d0c9f5.tar.bz2 samba-95ab312169f12d086ac1664d86a3485308d0c9f5.zip |
build: list sources of subsys PRINTBACKEND direclty in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript_build | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index bd83777c1f..64129eb1f7 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,13 +3,6 @@ from samba_utils import * import samba_version, samba3 -PRINTBACKEND_SRC = '''printing/printing.c - printing/nt_printing.c - printing/nt_printing_tdb.c - printing/nt_printing_migrate_internal.c - printing/nt_printing_ads.c - printing/queue_process.c''' - STATUS_SRC = '''utils/status.c utils/status_profile.c smbd/notify_internal.c''' SMBCONTROL_SRC = '''utils/smbcontrol.c''' @@ -811,9 +804,13 @@ bld.SAMBA3_SUBSYSTEM('PRINTBASE', deps='samba-util tdb_compat') bld.SAMBA3_SUBSYSTEM('PRINTBACKEND', - source=PRINTBACKEND_SRC, - deps='PRINTBASE LIBADS_PRINTER tdb_compat printing_migrate', - vars=locals()) + source='''printing/printing.c + printing/nt_printing.c + printing/nt_printing_tdb.c + printing/nt_printing_migrate_internal.c + printing/nt_printing_ads.c + printing/queue_process.c''', + deps='PRINTBASE LIBADS_PRINTER tdb_compat printing_migrate') bld.SAMBA3_LIBRARY('printing_migrate', source='printing/nt_printing_migrate.c rpc_client/cli_winreg_spoolss.c printing/nt_printing_os2.c', |