From 9fb2d82993fdecccfd7d7c845ca4e2b6c37e02fc Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 8 Nov 2003 18:32:51 +0000 Subject: [PATCH] Add static-libs/archives path to the library search path options so that the auto_link feature can find the libraries. [SVN r20767] --- v1/boost-base.jam | 1 + 1 file changed, 1 insertion(+) diff --git a/v1/boost-base.jam b/v1/boost-base.jam index 9f6a1daf7..475235425 100644 --- a/v1/boost-base.jam +++ b/v1/boost-base.jam @@ -1655,6 +1655,7 @@ rule depend-on-libraries { NEEDLIBS = [ unique $(NEEDLIBS) $(>) ] ; NEEDLIBS on $(<) = [ on $(<) return [ unique $(NEEDLIBS) $(>) ] ] ; + LIBPATH on $(<) += [ unique $(gLOCATE($(>))) ] ; DEPENDS $(<) : $(>) ; # To run these targets, we need everything needed to run the libraries gRUN_PATH($(<)) = [ unique $(gRUN_PATH($(<))) $(gRUN_PATH($(>))) ] ;