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 <github@kheafield.com>2012-07-17 12:40:32 +0400
committerKenneth Heafield <github@kheafield.com>2012-07-17 12:40:32 +0400
commita73dc0e5b4d7d580609fa630e89663fb3fa5b047 (patch)
treed28ffbd5dc27e9ba3ba69d8cac9ea13ef5238001 /jam-files/sanity.jam
parentd5c2868f9787a85e91328de0580c57c00f2ab1fe (diff)
Attempt to fix missing boost_system for some people with 1.50
Diffstat (limited to 'jam-files/sanity.jam')
-rw-r--r--jam-files/sanity.jam6
1 files changed, 3 insertions, 3 deletions
diff --git a/jam-files/sanity.jam b/jam-files/sanity.jam
index 1bdee3dca..c846bec6c 100644
--- a/jam-files/sanity.jam
+++ b/jam-files/sanity.jam
@@ -96,10 +96,10 @@ rule boost-lib ( name macro : deps * ) {
#versions of boost do not have -mt tagged versions of all libraries. Sadly,
#boost.jam does not handle this correctly.
if [ test_flags $(L-boost-search)" -lboost_"$(name)"-mt" ] {
- lib inner_boost_$(name) : $(deps) : <threading>single $(boost-search) <name>boost_$(name) ;
- lib inner_boost_$(name) : $(deps) : <threading>multi $(boost-search) <name>boost_$(name)-mt ;
+ lib inner_boost_$(name) : : <threading>single $(boost-search) <name>boost_$(name) : : <library>$(deps) ;
+ lib inner_boost_$(name) : : <threading>multi $(boost-search) <name>boost_$(name)-mt : : <library>$(deps) ;
} else {
- lib inner_boost_$(name) : $(deps) : $(boost-search) <name>boost_$(name) ;
+ lib inner_boost_$(name) : : $(boost-search) <name>boost_$(name) : : <library>$(deps) ;
}
alias boost_$(name) : inner_boost_$(name) : $(boost-auto-shared) : : <link>shared:<define>BOOST_$(macro) $(boost-include) ;