Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <kenlm@kheafield.com>2011-11-24 17:26:44 +0400
committerKenneth Heafield <kenlm@kheafield.com>2011-11-24 17:26:44 +0400
commit13848b1ea3a0fb4fa49bdab2c451fdd9f8d9544b (patch)
treef5384472bc77a69a8e904f9b1d406832ec92c6f0 /Jamroot
parent49dd85dd64df7ae7c2460c2a33351dbbfbdbfd98 (diff)
D'oh forgot a boost_
Diffstat (limited to 'Jamroot')
-rw-r--r--Jamroot2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jamroot b/Jamroot
index 05e3cb5c6..7813aa510 100644
--- a/Jamroot
+++ b/Jamroot
@@ -70,7 +70,7 @@ rule boost_lib ( name macro ) {
#Link multi-threaded programs against the -mt version if available. Old
#versions of boost do not have -mt tagged versions of all libraries. Sadly,
#boost.jam does not handle this correctly.
- if [ test_flags "-l"$(name)"-mt" ] {
+ if [ test_flags "-lboost_"$(name)"-mt" ] {
lib inner_boost_$(name) : : <threading>single <name>boost_$(name) ;
lib inner_boost_$(name) : : <threading>multi <name>boost_$(name)-mt ;
} else {