diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-21 15:50:51 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-22 02:51:10 +0100 |
commit | 1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74 (patch) | |
tree | a6fba1a806d5b722e297debce2d414277354149f /wscript_build | |
parent | f0a4d3a9d5c77b87104a9a53adf026ee51113e80 (diff) | |
download | samba-1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74.tar.gz samba-1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74.tar.bz2 samba-1bf4ff2ab2e5bca2c6d7e5840fe20bd3dbd20d74.zip |
s4-waf: added --enable-s3build configure option
this enables the build of the s3 binaries in the toplevel build
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'wscript_build')
-rw-r--r-- | wscript_build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wscript_build b/wscript_build index 37abfd1b77..dd905f8063 100644 --- a/wscript_build +++ b/wscript_build @@ -105,7 +105,8 @@ bld.RECURSE('source4/setup') bld.RECURSE('source4/scripting') bld.RECURSE('pidl') bld.RECURSE('lib') -bld.RECURSE('source3') +if bld.env.enable_s3build: + bld.RECURSE('source3') # install some extra empty directories bld.INSTALL_DIRS("", "${LOCKDIR} ${SYSCONFDIR} ${LOCKDIR} ${PIDDIR} ${LOCALSTATEDIR}/lib ${PRIVATEDIR}/smbd.tmp/messaging") |