diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-04 13:08:05 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:25 +1000 |
commit | 553324bc1022635e05a683c4bec5135d845f6fea (patch) | |
tree | 7d8aa296c7e433793e47bf1227310973a4aed7e9 /source4/libcli/wscript_build | |
parent | 8dc8d31f4adf84f35bce34339e13e9d70c4b8a66 (diff) | |
download | samba-553324bc1022635e05a683c4bec5135d845f6fea.tar.gz samba-553324bc1022635e05a683c4bec5135d845f6fea.tar.bz2 samba-553324bc1022635e05a683c4bec5135d845f6fea.zip |
s4-waf: move to a universal method of recursing into subdirs
This works with both standalone lib builds and bundled builds
Diffstat (limited to 'source4/libcli/wscript_build')
-rw-r--r-- | source4/libcli/wscript_build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/libcli/wscript_build b/source4/libcli/wscript_build index d06ab4d755..d46fed7f1b 100644 --- a/source4/libcli/wscript_build +++ b/source4/libcli/wscript_build @@ -1,8 +1,8 @@ #!/usr/bin/env python -bld.BUILD_SUBDIR('ldap') -bld.BUILD_SUBDIR('security') -bld.BUILD_SUBDIR('wbclient') +bld.RECURSE('ldap') +bld.RECURSE('security') +bld.RECURSE('wbclient') bld.SAMBA_SUBSYSTEM('LIBSAMBA-ERRORS', source='../../libcli/util/doserr.c util/errormap.c util/nterr.c', @@ -96,4 +96,4 @@ bld.SAMBA_SUBSYSTEM('LIBCLI_RAW', deps='LIBCLI_COMPOSITE LP_RESOLVE gensec LIBCLI_RESOLVE LIBSECURITY LIBNDR' ) -bld.BUILD_SUBDIR('smb2') +bld.RECURSE('smb2') |