2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
[SVN r12133]
This commit is contained in:
Dave Abrahams
2001-12-20 04:02:40 +00:00
parent cf68992566
commit dd91fe27e8
2 changed files with 18 additions and 4 deletions

View File

@@ -142,9 +142,16 @@ rule python-files ( module implib ? : sources * )
dll-files $(actual-module) $(implib) : $(sources) : PYD ;
if $(NT) && ( $(gCURRENT_TOOLSET) = gcc )
if ( $(gCURRENT_TOOLSET) = gcc )
{
add-cygwin-python-run-path $(<[-1]) ;
if $(NT)
{
add-cygwin-python-run-path $(<[-1]) ;
}
else
{
gRUN_PATH($(module)) += $(GCC_ROOT_DIRECTORY)/lib ;
}
}
}