|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49026 - trunk/tools/build/v2/tools
From: juergen.hunold_at_[hidden]
Date: 2008-09-29 14:44:17
Author: jhunold
Date: 2008-09-29 14:44:16 EDT (Mon, 29 Sep 2008)
New Revision: 49026
URL: http://svn.boost.org/trac/boost/changeset/49026
Log:
Fix regression in r49009: Add threading libs to FINDLIBS-SA with operator += instead of reset with "=".
Text files modified:
trunk/tools/build/v2/tools/gcc.jam | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/tools/gcc.jam
==============================================================================
--- trunk/tools/build/v2/tools/gcc.jam (original)
+++ trunk/tools/build/v2/tools/gcc.jam 2008-09-29 14:44:16 EDT (Mon, 29 Sep 2008)
@@ -827,7 +827,7 @@
}
if $(libs)
{
- FINDLIBS-SA on $(targets) = $(libs) ;
+ FINDLIBS-SA on $(targets) += $(libs) ;
}
}
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk