diff options
author | Kai Blin <kai@samba.org> | 2010-05-20 22:58:59 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2010-05-21 00:15:52 +0200 |
commit | c926acf7f1b49191b18f04a9caf484d8ef1033b9 (patch) | |
tree | 769efb44930304fa84873c54b06c51a38c56210b /source3/wscript_build | |
parent | 2bbf055dbb15ea99b80ae66adc906ad5494a3999 (diff) | |
download | samba-c926acf7f1b49191b18f04a9caf484d8ef1033b9.tar.gz samba-c926acf7f1b49191b18f04a9caf484d8ef1033b9.tar.bz2 samba-c926acf7f1b49191b18f04a9caf484d8ef1033b9.zip |
s3-waf: Really disable winbindd build when --without-winbind is specified
Diffstat (limited to 'source3/wscript_build')
-rw-r--r-- | source3/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/wscript_build b/source3/wscript_build index 222dab6837..04f47dd170 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -923,7 +923,7 @@ bld.SAMBA_BINARY('winbindd/winbindd', deps='''talloc tdb tevent cap dl DYNCONFIG ZLIB NSS_WRAPPER LIBWBCLIENT PASSDB ldap resolv PARAM LIB_NONSMBD LIBSMB POPT_SAMBA KRBCLIENT''', - enabled=Options.options.with_winbind, + enabled=bld.env.build_winbind, install_path='${SBINDIR}', vars=locals()) |