mirror of
https://github.com/boostorg/build.git
synced 2026-02-20 02:32:13 +00:00
Fix up RUN_PATH for testing
[SVN r14461]
This commit is contained in:
@@ -18,11 +18,15 @@
|
||||
# tests, and seems to be unneeded for the regression tests, but it
|
||||
# is a slight hack.
|
||||
local root = [ get-stlport-root ] ;
|
||||
if ! $(root)/lib in $(gTOOLSET_LIB_PATH)
|
||||
if ! [ MATCH $(root)[\\\\/]lib : $(gTOOLSET_LIB_PATH) ]
|
||||
{
|
||||
# Stick it at the front of the path because Windows only seems
|
||||
# to be willing to look so far, then quits!
|
||||
gTOOLSET_LIB_PATH = $(root)/lib $(gTOOLSET_LIB_PATH) ;
|
||||
}
|
||||
if ! [ MATCH $(root)[\\\\/]lib : $(RUN_PATH) ]
|
||||
{
|
||||
RUN_PATH = $(root)/lib $(RUN_PATH) ;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,11 +18,15 @@
|
||||
# tests, and seems to be unneeded for the regression tests, but it
|
||||
# is a slight hack.
|
||||
local root = [ get-stlport-root ] ;
|
||||
if ! $(root)/lib in $(gTOOLSET_LIB_PATH)
|
||||
if ! [ MATCH $(root)[\\\\/]lib : $(gTOOLSET_LIB_PATH) ]
|
||||
{
|
||||
# Stick it at the front of the path because Windows only seems
|
||||
# to be willing to look so far, then quits!
|
||||
gTOOLSET_LIB_PATH = $(root)/lib $(gTOOLSET_LIB_PATH) ;
|
||||
}
|
||||
if ! [ MATCH $(root)[\\\\/]lib : $(RUN_PATH) ]
|
||||
{
|
||||
RUN_PATH = $(root)/lib $(RUN_PATH) ;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user