From: Andrew Tridgell Date: Thu, 6 May 2010 12:51:28 +0000 (+0200) Subject: build: added a reconfigure target X-Git-Tag: samba-3.6.0pre1~2195 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c61f4dcc0f9611448e726e203d65c674e4d74427;p=thirdparty%2Fsamba.git build: added a reconfigure target this is meant to be used by the s3 build, to allow jelmers work on smbtorture4 in s3 to avoid re-running configure unless its needed --- diff --git a/buildtools/scripts/Makefile.waf b/buildtools/scripts/Makefile.waf index 1345f19e916..5af4fd42395 100644 --- a/buildtools/scripts/Makefile.waf +++ b/buildtools/scripts/Makefile.waf @@ -29,6 +29,9 @@ clean: distclean: $(WAF) distclean +reconfigure: configure + $(WAF) reconfigure + # some compatibility make targets everything: all diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index 335313e5dc6..f0360688ba0 100644 --- a/buildtools/wafsamba/samba_utils.py +++ b/buildtools/wafsamba/samba_utils.py @@ -507,3 +507,13 @@ def load_file(filename): except: return None return r + + +def reconfigure(ctx): + '''rerun configure if necessary''' + import Configure, samba_wildcard, Scripting + if not os.path.exists(".lock-wscript"): + raise Utils.WafError('configure has not been run') + bld = samba_wildcard.fake_build_environment() + Configure.autoconfig = True + Scripting.check_configured(bld) diff --git a/source4/wscript b/source4/wscript index 880069ed0e2..05bee1a6fed 100644 --- a/source4/wscript +++ b/source4/wscript @@ -157,3 +157,7 @@ def main(): wildcard_main(wildcard_cmd) Scripting.main = main +def reconfigure(ctx): + '''reconfigure if config scripts have changed''' + import samba_utils + samba_utils.reconfigure(ctx)