From 1fedb0ae88347bf69b87e515bedb8b4b0ef1a2b3 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 30 Mar 2012 15:18:16 +0200 Subject: waf: when USING_SYSTEM_KRB5 environment variable is set, dont configure local heimdal. Guenther Signed-off-by: Andreas Schneider --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 6b51a37c857..15e1ce51bfc 100755 --- a/wscript +++ b/wscript @@ -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') -- cgit