From a100fbd167c8d56fbb6cd85fd5a08a52a0babd8d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 30 Jun 2017 20:06:49 +0300 Subject: [PATCH] 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 d521e5eb5a8..df8c710656d 100644 --- a/Jamroot +++ b/Jamroot @@ -133,6 +133,7 @@ import notfile ; import virtual-target ; import "class" : new ; import property-set ; +import option ; path-constant BOOST_ROOT : . ; constant BOOST_VERSION : 1.65.0 ; @@ -292,7 +293,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) ; module [ CALLER_MODULE ] {