From 33704a3baaf73aafe1e2b987ce6dd15abb0b04ee Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 30 Jun 2017 20:06:49 +0300 Subject: Fix stage target to not use undefined BOOST_STAGE_LOCATE --- Jamroot | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jamroot b/Jamroot index 03cb10130f..a917f4725f 100644 --- a/Jamroot +++ b/Jamroot @@ -134,6 +134,7 @@ import virtual-target ; import "class" : new ; import property-set ; import threadapi-feature ; +import option ; path-constant BOOST_ROOT : . ; constant BOOST_VERSION : 1.66.0 ; @@ -299,7 +300,9 @@ rule boost-install ( libraries * ) : # No headers, it is handled by the dependency. ; - install stage : $(libraries) : $(BOOST_STAGE_LOCATE) ; + local stage-locate = [ option.get stagedir : $(BOOST_ROOT)/stage ] ; + + install stage : $(libraries) : $(stage-locate)/lib ; module [ CALLER_MODULE ] { -- cgit v1.2.1