2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +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 e82b6beba1
commit 36ec5d2c73

View File

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