From de4a1dca2bbf392de98c556b6fdee05282a9558c Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Tue, 2 Jun 2015 15:16:30 -0700 Subject: [PATCH] configure: Allow specifying your python with --python --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 20a5fa390f0..1f411df73fd 100755 --- a/configure +++ b/configure @@ -582,6 +582,7 @@ valopt sysconfdir "/etc" "install system configuration files" valopt datadir "${CFG_PREFIX}/share" "install data" valopt infodir "${CFG_PREFIX}/share/info" "install additional info" valopt llvm-root "" "set LLVM root" +valopt python "" "set path to python" valopt jemalloc-root "" "set directory where libjemalloc_pic.a is located" valopt build "${DEFAULT_BUILD}" "GNUs ./configure syntax LLVM build triple" valopt android-cross-path "/opt/ndk_standalone" "Android NDK standalone path" @@ -694,7 +695,9 @@ putvar CFG_BOOTSTRAP_KEY step_msg "looking for build programs" probe_need CFG_CURLORWGET curl wget -probe_need CFG_PYTHON python2.7 python2.6 python2 python +if [ -z "$CFG_PYTHON_PROVIDED" ]; then + probe_need CFG_PYTHON python2.7 python2.6 python2 python +fi python_version=$($CFG_PYTHON -V 2>&1) if [ $(echo $python_version | grep -c '^Python 2\.[4567]') -ne 1 ]; then