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
path: root/moses
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-03-05 21:18:27 +0400
committerKenneth Heafield <github@kheafield.com>2012-03-05 21:18:27 +0400
commit5308a529dd659cb64acf243036c744387897dcbd (patch)
tree1a045180541a52cd2122e3dd488a3ce7e9db0af9 /moses
parentc6ab0a9a23142111e19598342e2f59ed873ae581 (diff)
Attempt to fix randlm compilation
Diffstat (limited to 'moses')
-rw-r--r--moses/src/LM/Jamfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/moses/src/LM/Jamfile b/moses/src/LM/Jamfile
index 372bb79f3..c3d30aa59 100644
--- a/moses/src/LM/Jamfile
+++ b/moses/src/LM/Jamfile
@@ -40,7 +40,7 @@ local with-randlm = [ option.get "with-randlm" ] ;
if $(with-randlm) {
lib randlm : : <search>$(with-randlm)/lib <search>$(with-randlm)/lib64 ;
obj Rand.o : Rand.cpp randlm ..//headers : <include>$(with-randlm)/include <include>$(with-randlm)/include/randlm ;
- alias rand : Rand.o : : : <define>LM_RAND ;
+ alias rand : Rand.o randlm : : : <define>LM_RAND ;
dependencies += rand ;
}