From cc6d6a14a238dd6b06465cb7f04d873fee7edcae Mon Sep 17 00:00:00 2001 From: Scherrer Yves Date: Tue, 20 Feb 2018 12:09:32 +0200 Subject: [PATCH] fix symlink path in Jamroot when using --prefix --- Jamroot | 8 ++++---- 1 file 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" ] ;