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:
authorScherrer Yves <yves.scherrer@helsinki.fi>2018-02-20 13:09:32 +0300
committerScherrer Yves <yves.scherrer@helsinki.fi>2018-02-20 13:09:32 +0300
commitcc6d6a14a238dd6b06465cb7f04d873fee7edcae (patch)
tree5a98b798cd56113d83b78ff36871601ba3e74fe8
parent4a7f16b36677525db594d756369c53ec15f3178d (diff)
fix symlink path in Jamroot when using --prefix
-rw-r--r--Jamroot8
1 files changed, 4 insertions, 4 deletions
diff --git a/Jamroot b/Jamroot
index bbf718663..91969fb9c 100644
--- a/Jamroot
+++ b/Jamroot
@@ -338,8 +338,8 @@ 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 -f $(TOP)/bin/moses_chart" ] ;
-local temp = [ _shell "cd $(TOP)/bin && ln -sf moses moses_chart" ] ;
-local temp = [ _shell "cd $(TOP)/bin && ln -sf CreateProbingPT CreateProbingPT2" ] ;
+local temp = [ _shell "mkdir -p $(PREFIX)/bin" ] ;
+local temp = [ _shell "rm -f $(PREFIX)/bin/moses_chart" ] ;
+local temp = [ _shell "cd $(PREFIX)/bin && ln -sf moses moses_chart" ] ;
+local temp = [ _shell "cd $(PREFIX)/bin && ln -sf CreateProbingPT CreateProbingPT2" ] ;