summaryrefslogtreecommitdiff
path: root/source3/wscript_build
diff options
context:
space:
mode:
Diffstat (limited to 'source3/wscript_build')
-rwxr-xr-xsource3/wscript_build10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/wscript_build b/source3/wscript_build
index c6d453c2e1..8f54fd7690 100755
--- a/source3/wscript_build
+++ b/source3/wscript_build
@@ -3,8 +3,6 @@
from samba_utils import *
import samba_version, samba3
-LOCKING_SRC = '''locking/locking.c locking/brlock.c locking/posix.c locking/share_mode_lock.c'''
-
PRIVILEGES_SRC = '''lib/privileges.c'''
PASSDB_GET_SET_SRC = '''passdb/pdb_get_set.c'''
@@ -790,13 +788,15 @@ bld.SAMBA3_LIBRARY('smbd_base',
vars=locals())
bld.SAMBA3_SUBSYSTEM('LOCKING',
- source='${LOCKING_SRC}',
+ source='''locking/locking.c
+ locking/brlock.c
+ locking/posix.c
+ locking/share_mode_lock.c''',
deps='''
tdb_compat
talloc
NDR_OPEN_FILES
- FNAME_UTIL''',
- vars=locals())
+ FNAME_UTIL''')
bld.SAMBA3_SUBSYSTEM('PROFILE',
source='${PROFILE_SRC}',