summaryrefslogtreecommitdiff
path: root/ctdb
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2017-02-23 10:16:25 -0500
committerAndrew Bartlett <abartlet@samba.org>2017-03-10 07:31:12 +0100
commit9a9e3423d8c7be6350cba20cb6001fc14d47d336 (patch)
tree4e38e9fce6cc9a6c6018e32f900f3688e1a240c3 /ctdb
parent8ba2fe54dea3e99da7f9b18557d9d31aed3ff7d0 (diff)
downloadsamba-9a9e3423d8c7be6350cba20cb6001fc14d47d336.tar.gz
waf: disable-python - fix ctdb configuration
When ctdb is built in standalone mode, it turned off the python requirement for submodules by setting Options.options.disable_python to True before checking for its own (non-optional) python support. Ad ctdb does not need python for itself or any of the submodules it is built against, the safest solution seems to be to allow the python and python-headers checks to not find python. Signed-off-by: Ian Stakenvicius <axs@gentoo.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'ctdb')
-rw-r--r--ctdb/wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/wscript b/ctdb/wscript
index 4c8db60e139..9e99fa2dd0e 100644
--- a/ctdb/wscript
+++ b/ctdb/wscript
@@ -107,8 +107,8 @@ def configure(conf):
if conf.env.standalone_ctdb:
conf.SAMBA_CHECK_PERL(mandatory=True)
- conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
- conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
+ conf.SAMBA_CHECK_PYTHON(mandatory=False, version=(2,5,0))
+ conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=False)
if conf.CHECK_FOR_THIRD_PARTY():
conf.RECURSE('third_party/popt')