diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-04-23 02:04:13 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-04-23 04:19:04 +0200 |
commit | bf3b2e2aee284c85ecea6a3142bc1fa5344b430a (patch) | |
tree | 90826deeea0b2ed645f5a34cb9790925ee5aac04 /lib | |
parent | 317e40d46b1a2252a5f60711acc73e80498a26b3 (diff) | |
download | samba-bf3b2e2aee284c85ecea6a3142bc1fa5344b430a.tar.gz |
Support the 'PYTHON' environment variable.
Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Apr 23 04:19:05 CEST 2011 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tdb/wscript | 1 | ||||
-rw-r--r-- | lib/tevent/wscript | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index 9041f8c1ba6..58a747f0b23 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -45,6 +45,7 @@ def configure(conf): if not conf.env.disable_python: # also disable if we don't have the python libs installed + conf.find_program('python', var='PYTHON') conf.check_tool('python') conf.check_python_version((2,4,2)) conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=False) diff --git a/lib/tevent/wscript b/lib/tevent/wscript index de245d92e74..75c44c29622 100644 --- a/lib/tevent/wscript +++ b/lib/tevent/wscript @@ -46,6 +46,7 @@ def configure(conf): if not conf.env.disable_python: # also disable if we don't have the python libs installed + conf.find_program('python', var='PYTHON') conf.check_tool('python') conf.check_python_version((2,4,2)) conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=False) |