diff options
author | Günther Deschner <gd@samba.org> | 2012-03-30 15:18:16 +0200 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2012-04-12 12:06:41 +0200 |
commit | 1fedb0ae88347bf69b87e515bedb8b4b0ef1a2b3 (patch) | |
tree | 595ffbd85c04cb4b01d861fec62a89ad2d81d66d /wscript | |
parent | d82aab6c709ce840594e6bafe29ae22f358fc7ee (diff) | |
download | samba-1fedb0ae88347bf69b87e515bedb8b4b0ef1a2b3.tar.gz samba-1fedb0ae88347bf69b87e515bedb8b4b0ef1a2b3.tar.bz2 samba-1fedb0ae88347bf69b87e515bedb8b4b0ef1a2b3.zip |
waf: when USING_SYSTEM_KRB5 environment variable is set, dont configure local
heimdal.
Guenther
Signed-off-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'wscript')
-rwxr-xr-x | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -84,7 +84,8 @@ def configure(conf): conf.RECURSE('dynconfig') conf.RECURSE('lib/ldb') - conf.RECURSE('source4/heimdal_build') + if not os.getenv('USING_SYSTEM_KRB5'): + conf.RECURSE('source4/heimdal_build') conf.RECURSE('source4/lib/tls') conf.RECURSE('source4/ntvfs/sysdep') conf.RECURSE('lib/util') |