From 4f6c6b3e04c14f7bdb259e40a49eb417d8d5fe0b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 13 Oct 2024 19:11:31 +0300 Subject: [PATCH] Fix `bcp --namespace` issues again --- Jamroot | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jamroot b/Jamroot index ca5a1cf52c..033e222b80 100644 --- a/Jamroot +++ b/Jamroot @@ -461,7 +461,9 @@ for local lib in $(all-libraries-to-declare) project.pop-current ; } -if ! [ project.search /boost/tools/boost_install ] +# Backslash because of `bcp --namespace` + +if ! [ project.search /boost/tools/boost\_install ] { - use-project /boost/tools/boost_install : tools/boost_install ; + use-project /boost/tools/boost\_install : tools/boost\_install ; }