diff options
author | Günther Deschner <gd@samba.org> | 2012-03-30 15:16:43 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2012-04-12 12:06:41 +0200 |
commit | d82aab6c709ce840594e6bafe29ae22f358fc7ee (patch) | |
tree | c57c41c9780220971126804383aa60e25ed8eae6 /wscript_build | |
parent | 60f192ae10553222b1fe74bf6236b9392d38299b (diff) | |
download | samba-d82aab6c709ce840594e6bafe29ae22f358fc7ee.tar.gz |
waf: when building with system krb5, we do not need to build local heimdal.
Guenther
Signed-off-by: Andreas Schneider <asn@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 93008a8744d..e3cacbf7348 100644 --- a/wscript_build +++ b/wscript_build @@ -111,7 +111,8 @@ bld.RECURSE('libcli/samsync') bld.RECURSE('libcli/registry') bld.RECURSE('source4/lib/policy') bld.RECURSE('libcli/named_pipe_auth') -bld.RECURSE('source4/heimdal_build') +if not bld.CONFIG_SET("USING_SYSTEM_KRB5"): + bld.RECURSE('source4/heimdal_build') bld.RECURSE('libcli/smbreadline') bld.RECURSE('codepages') bld.RECURSE('source4/setup') |