From 5131ab858703c39e4b9a67d827ab05dc8eae40af Mon Sep 17 00:00:00 2001 From: Dmitry Arkhipov Date: Sun, 10 Nov 2024 19:24:27 +0300 Subject: [PATCH] fix staging (#406) Due to a typo staging using ` is broken. This change removes the typo. --- src/tools/stage.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/stage.jam b/src/tools/stage.jam index 3552605668..17bb13219e 100644 --- a/src/tools/stage.jam +++ b/src/tools/stage.jam @@ -798,7 +798,7 @@ rule get-dir ( name : property-set : package-name : flags * ) local rel = [ path.relative $(result) $(prefix) : no-error ] ; if not-a-child != $(rel) { - result = [ path.root $(rel) $(prefix) ] ; + result = [ path.root $(rel) $(stage) ] ; } } }