diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 02:16:47 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:21:44 +0200 |
commit | fe5b6189e539b5cc7d068824074e6f4082646068 (patch) | |
tree | c147620d0b9faab88c6ee625ec56d0bdda1e9b61 /source3 | |
parent | db162564f759233b36219402a13232280b80f7d7 (diff) | |
download | samba-fe5b6189e539b5cc7d068824074e6f4082646068.tar.gz samba-fe5b6189e539b5cc7d068824074e6f4082646068.tar.bz2 samba-fe5b6189e539b5cc7d068824074e6f4082646068.zip |
build: list sources directly in the definition of LIBAFS subsystem and 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 | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index f5b2965f1d..7df8fd1eb6 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -11,8 +11,6 @@ TDB_LIB_SRC = ''' TDB_VALIDATE_SRC = '''lib/tdb_validate.c''' -AFS_SRC = 'lib/afs.c' - AFS_SETTOKEN_SRC = 'lib/afs_settoken.c' AVAHI_SRC = 'lib/avahi.c smbd/avahi_register.c' @@ -889,9 +887,8 @@ bld.SAMBA3_SUBSYSTEM('LIBADS_PRINTER', vars=locals()) bld.SAMBA3_SUBSYSTEM('LIBAFS', - source=AFS_SRC, - deps='samba-util', - vars=locals()) + source='lib/afs.c', + deps='samba-util') bld.SAMBA3_SUBSYSTEM('LIBAFS_SETTOKEN', source=AFS_SETTOKEN_SRC, |