From 36ec5d2c73f74f0a6b57f2f1aa9f2b9a6ca6d2bd 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] --- v2/tools/gcc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/gcc.jam b/v2/tools/gcc.jam index d33efa4d8..fdce9657f 100644 --- a/v2/tools/gcc.jam +++ b/v2/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) ; } } }