diff options
author | Michael Adam <obnox@samba.org> | 2013-09-23 08:58:00 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-09-23 20:23:58 +0200 |
commit | 0cbc839072bf9d148473850ee462817516212e53 (patch) | |
tree | 6fbb2dd76930763ed73bab55157c382d9d520360 | |
parent | a53be340ae33a5e38054a355f77a72cfca2b2c3f (diff) | |
download | samba-0cbc839072bf9d148473850ee462817516212e53.tar.gz samba-0cbc839072bf9d148473850ee462817516212e53.tar.bz2 samba-0cbc839072bf9d148473850ee462817516212e53.zip |
build: list source of subsys PROFILE directly in definition
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 d12f37fd3b..8add31a8a2 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -3,7 +3,6 @@ from samba_utils import * import samba_version, samba3 -PROFILE_SRC = '''profile/profile.c''' PROFILES_SRC = '''utils/profiles.c''' OPLOCK_SRC = '''smbd/oplock.c smbd/oplock_irix.c smbd/oplock_linux.c''' @@ -796,9 +795,8 @@ bld.SAMBA3_SUBSYSTEM('LOCKING', FNAME_UTIL''') bld.SAMBA3_SUBSYSTEM('PROFILE', - source='${PROFILE_SRC}', - deps='samba-util', - vars=locals()) + source='profile/profile.c', + deps='samba-util') bld.SAMBA3_SUBSYSTEM('PRINTBASE', source=PRINTBASE_SRC, |