From 6bebc74e63cd737c28d30d9429448112201754fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hunold?= Date: Mon, 29 Sep 2008 18:44:16 +0000 Subject: [PATCH] Fix regression in r49009: Add threading libs to FINDLIBS-SA with operator += instead of reset with "=". [SVN r49026] --- src/tools/gcc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/gcc.jam b/src/tools/gcc.jam index d33efa4d8..fdce9657f 100644 --- a/src/tools/gcc.jam +++ b/src/tools/gcc.jam @@ -827,7 +827,7 @@ rule setup-threading ( targets * : sources * : properties * ) } if $(libs) { - FINDLIBS-SA on $(targets) = $(libs) ; + FINDLIBS-SA on $(targets) += $(libs) ; } } }