Skip to content

Commit

Permalink
Bug fix. Bjam would fail if bin/moses_chart didn't exist. Notice the …
Browse files Browse the repository at this point in the history
…-sf for the link command, which forces the link even if bin/moses_chart exists.
  • Loading branch information
ugermann committed May 25, 2015
1 parent a693c83 commit eeac962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jamroot
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] ;

0 comments on commit eeac962

Please sign in to comment.