From 45f3db445cd396d971d8b302e848bd53095aa1e1 Mon Sep 17 00:00:00 2001 From: "Peter S. Housel" Date: Mon, 5 Dec 2022 22:08:32 -0800 Subject: [PATCH] jamfiles: Copy runtime libraries for unified executables * sources/jamfiles/posix-build.jam (rule DylanLibrary): Ensure that "batteries included" runtime shared libraries are copied into the lib/ directory when unified exectables are built. --- sources/jamfiles/posix-build.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/jamfiles/posix-build.jam b/sources/jamfiles/posix-build.jam index f1b4589e0..21216bb4b 100644 --- a/sources/jamfiles/posix-build.jam +++ b/sources/jamfiles/posix-build.jam @@ -156,7 +156,7 @@ rule DylanLibrary image : version { local _rtlib = $(_i:D=) ; MakeLocate $(_rtlib) : $(LIBDIR) ; File $(_rtlib) : $(_i) ; - Depends $(_dll) : $(_rtlib) ; + Depends $(_dll) $(_ulib) : $(_rtlib) ; } }