diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:14:07 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:23 +0200 |
commit | bd85cecde760aa13f8b57ec11d7be4c8cc4a9fef (patch) | |
tree | bb865434040fe63dbd9073b420cdbb8bc88db2cc /source3/wscript_build | |
parent | 1df37ec821564ca15acc6ad140d848fb66998f28 (diff) | |
download | samba-bd85cecde760aa13f8b57ec11d7be4c8cc4a9fef.tar.gz samba-bd85cecde760aa13f8b57ec11d7be4c8cc4a9fef.tar.bz2 samba-bd85cecde760aa13f8b57ec11d7be4c8cc4a9fef.zip |
build: list sources of subsys PRINTING directly in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-x | source3/wscript_build | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index ca2ca03c92..ad78979966 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,11 +3,6 @@ from samba_utils import * import samba_version, samba3 -PRINTING_SRC = '''printing/pcap.c printing/print_svid.c printing/print_aix.c - printing/print_cups.c printing/print_generic.c - printing/lpq_parse.c printing/load.c printing/print_standard.c - printing/print_iprint.c printing/printer_list.c''' - PRINTBASE_SRC = '''printing/notify.c printing/printing_db.c''' PRINTBACKEND_SRC = '''printing/printing.c printing/nt_printing.c @@ -829,9 +824,17 @@ bld.SAMBA3_LIBRARY('printing_migrate', private_library=True) bld.SAMBA3_SUBSYSTEM('PRINTING', - source=PRINTING_SRC, - deps='NDR_PRINTCAP tdb_compat cups', - vars=locals()) + source='''printing/pcap.c + printing/print_svid.c + printing/print_aix.c + printing/print_cups.c + printing/print_generic.c + printing/lpq_parse.c + printing/load.c + printing/print_standard.c + printing/print_iprint.c + printing/printer_list.c''', + deps='NDR_PRINTCAP tdb_compat cups') bld.SAMBA3_SUBSYSTEM('PASSWD_UTIL', source=PASSWD_UTIL_SRC, |