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:
authorUlrich Germann <ulrich.germann@gmail.com>2015-05-25 13:50:44 +0300
committerUlrich Germann <ulrich.germann@gmail.com>2015-05-25 13:50:44 +0300
commiteeac96260285a07fa20398faad6915bcd6e70e6a (patch)
tree7e171974663aa48b7c88e291cb49789af1e46a52
parenta693c83161775c5bb9ad4d88c56af68697ea296b (diff)
Bug fix. Bjam would fail if bin/moses_chart didn't exist. Notice the -sf for the link command, which forces the link even if bin/moses_chart exists.mmt-mvp-v0.2.1
-rw-r--r--Jamroot4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jamroot b/Jamroot
index 119c6183e..d5e094797 100644
--- a/Jamroot
+++ b/Jamroot
@@ -301,5 +301,5 @@ if [ path.exists $(TOP)/dist ] && $(prefix) != dist {
#local temp = [ _shell "bash source ./s.sh" ] ;
local temp = [ _shell "mkdir -p $(TOP)/bin" ] ;
-local temp = [ _shell "rm $(TOP)/bin/moses_chart" ] ;
-local temp = [ _shell "cd $(TOP)/bin && ln -s moses moses_chart" ] ;
+# local temp = [ _shell "rm $(TOP)/bin/moses_chart" ] ;
+local temp = [ _shell "cd $(TOP)/bin && ln -sf moses moses_chart" ] ;