summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-11-13 14:57:22 -0800
committerJohn Stebbins <[email protected]>2018-11-14 08:26:37 -0800
commitda8a76a46e40bc7a8b5b90acd27900873b6a171c (patch)
tree6af64758662523892062648cae2b0708e01e8927 /make/configure.py
parent2766a279df69b7dde72582b7793ac39090d8683c (diff)
build: add 'PYTON.exe' to probed tools
This records in GNUmakefile what python executable was found by configure.
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/make/configure.py b/make/configure.py
index 3a9d1c257..9697fffa5 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -1535,6 +1535,7 @@ try:
xcodebuild = ToolProbe( 'XCODEBUILD.exe', 'xcodebuild', abort=False )
lipo = ToolProbe( 'LIPO.exe', 'lipo', abort=False )
+ python = ToolProbe( 'PYTHON.exe', os.path.basename(sys.executable), abort=True )
## run tool probes
for tool in ToolProbe.tools: