diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 09:16:28 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:24:27 +0200 |
commit | 2d2c4efcdeb3657bcf0239e3712802205e8ec3ca (patch) | |
tree | 32f5c0bb2a8f9cc7f17fddf02be77066e2fe0892 | |
parent | bd85cecde760aa13f8b57ec11d7be4c8cc4a9fef (diff) | |
download | samba-2d2c4efcdeb3657bcf0239e3712802205e8ec3ca.tar.gz samba-2d2c4efcdeb3657bcf0239e3712802205e8ec3ca.tar.bz2 samba-2d2c4efcdeb3657bcf0239e3712802205e8ec3ca.zip |
build: list sources of subsys PRINTBASE directly in def, remove vars=locals()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rwxr-xr-x | source3/wscript_build | 6 |
1 files changed, 2 insertions, 4 deletions
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, |