2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 12:42:11 +00:00

Fix regression in r49009: Add threading libs to FINDLIBS-SA with operator += instead of reset with "=".

[SVN r49026]
This commit is contained in:
Jürgen Hunold
2008-09-29 18:44:16 +00:00
parent a0649ccf2e
commit 6bebc74e63

View File

@@ -827,7 +827,7 @@ rule setup-threading ( targets * : sources * : properties * )
}
if $(libs)
{
FINDLIBS-SA on $(targets) = $(libs) ;
FINDLIBS-SA on $(targets) += $(libs) ;
}
}
}