diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-11-06 22:24:07 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-11-09 14:54:46 +0100 |
commit | 010fd296881aa643a4b631d57df503c9e832b35c (patch) | |
tree | 06f4092cde9ec7ea71b6cf437aad6d7f531a5475 /configure | |
parent | 702049ef55dc17d2996a53a1c30be76591423970 (diff) | |
download | samba-010fd296881aa643a4b631d57df503c9e832b35c.tar.gz samba-010fd296881aa643a4b631d57df503c9e832b35c.tar.bz2 samba-010fd296881aa643a4b631d57df503c9e832b35c.zip |
configure: Support specifying PYTHON environment variable to run waf.
This is necessary to run configure on Minix, where python is named
"python2.X".
Reviewed-by: Simo Sorce <idra@samba.org>
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,5 +10,5 @@ JOBS=1 export JOBS cd . || exit 1 -$WAF configure "$@" || exit 1 +${PYTHON:=python} $WAF configure "$@" || exit 1 cd $PREVPATH |