Skip to content

Commit be91f92

Browse files
committed
Set <install-dlldir> appropriately when staging
1 parent 1e2fba8 commit be91f92

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

boost-install.jam

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,11 +1063,13 @@ rule install-or-stage-cmake-config ( name * : install-or-stage )
10631063
else
10641064
{
10651065
local reqs ;
1066+
10661067
if $(install-or-stage) = stage
10671068
{
10681069
local libdir = [ boost-install-dirs.stage-libdir ] ;
10691070
local includedir = [ boost-install-dirs.stage-includedir ] ;
1070-
reqs = <install-libdir>$(libdir) <install-includedir>$(includedir) ;
1071+
1072+
reqs = <install-libdir>$(libdir) <install-dlldir>$(libdir) <install-includedir>$(includedir) ;
10711073
}
10721074
else
10731075
{
@@ -1297,7 +1299,7 @@ rule boost-install ( libraries * )
12971299
if ! [ $(p).has-alternative-for-target stage ]
12981300
{
12991301
local stage-libdir = [ boost-install-dirs.stage-libdir ] ;
1300-
local reqs = <install-libdir>$(stage-libdir) ;
1302+
local reqs = <install-libdir>$(stage-libdir) <install-dlldir>$(stage-libdir) ;
13011303

13021304
stage-cmake-config $(libraries) ;
13031305

0 commit comments

Comments
 (0)