diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-09-01 12:45:38 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-07 17:42:03 +1100 |
commit | 055f017b3693af95864f6595cf4ead041c389c52 (patch) | |
tree | 9e59e56dc7dc3345722bf678027db66a75eb1062 /source3/passdb/wscript_build | |
parent | 83f0dc44a70ed7e49bcee3718ff17b2063b2a01e (diff) | |
download | samba-055f017b3693af95864f6595cf4ead041c389c52.tar.gz samba-055f017b3693af95864f6595cf4ead041c389c52.tar.bz2 samba-055f017b3693af95864f6595cf4ead041c389c52.zip |
build: Reduce build systems to just top level waf and autoconf
The s3-waf build system is a key component of the top level build, but
with this commit is is no longer available directly. This reduces the
number of build system combinations in master as we prepare for the
Samba 4.0 release.
Andrew Bartlett
Diffstat (limited to 'source3/passdb/wscript_build')
-rw-r--r-- | source3/passdb/wscript_build | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/source3/passdb/wscript_build b/source3/passdb/wscript_build index 49c8154bb1..b18d873083 100644 --- a/source3/passdb/wscript_build +++ b/source3/passdb/wscript_build @@ -53,10 +53,9 @@ bld.SAMBA3_MODULE('pdb_samba4', internal_module=bld.SAMBA3_IS_STATIC_MODULE('pdb_samba4'), enabled=bld.SAMBA3_IS_ENABLED_MODULE('pdb_samba4')) -if bld.env.toplevel_build: - bld.SAMBA3_PYTHON('pypassdb', - source='py_passdb.c', - deps='pdb', - public_deps='samba-util tdb talloc pyrpc_util', - realname='samba/samba3/passdb.so' - ) +bld.SAMBA3_PYTHON('pypassdb', + source='py_passdb.c', + deps='pdb', + public_deps='samba-util tdb talloc pyrpc_util', + realname='samba/samba3/passdb.so' + ) |