From da8a76a46e40bc7a8b5b90acd27900873b6a171c Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 13 Nov 2018 14:57:22 -0800 Subject: [PATCH] build: add 'PYTON.exe' to probed tools This records in GNUmakefile what python executable was found by configure. --- make/configure.py | 1 + 1 file changed, 1 insertion(+) 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: -- 2.40.0