From cf267f1cd839fca928e3b52cdadd0965b39fd8a0 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Wed, 26 Oct 2005 03:29:15 +0000 Subject: [PATCH] Also search for the Python DLL in the install location to catch when Python is not installed globally (non-admin install). [SVN r31474] --- v1/python.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v1/python.jam b/v1/python.jam index 677ca7053..60bd9b9cc 100644 --- a/v1/python.jam +++ b/v1/python.jam @@ -104,8 +104,8 @@ if $(NT) PYTHON_INCLUDES ?= $(PYTHON_ROOT)/include ; - PYTHON_DLL ?= [ GLOB $(PATH) $(Path) : python$(PYTHON_VERSION_NODOT).dll ] ; - PYTHON_DEBUG_DLL ?= [ GLOB $(PATH) $(Path) : python$(PYTHON_VERSION_NODOT)_d.dll ] ; + PYTHON_DLL ?= [ GLOB $(PYTHON_ROOT) $(PATH) $(Path) : python$(PYTHON_VERSION_NODOT).dll ] ; + PYTHON_DEBUG_DLL ?= [ GLOB $(PYTHON_ROOT) $(PATH) $(Path) : python$(PYTHON_VERSION_NODOT)_d.dll ] ; PYTHON_IMPORT_LIB ?= [ GLOB $(PYTHON_LIB_PATH) : libpython$(PYTHON_VERSION_NODOT).* ] ; PYTHON_DEBUG_IMPORT_LIB ?= [ GLOB $(PYTHON_LIB_PATH) : libpython$(PYTHON_VERSION_NODOT).* ] ; }