From 0984ee59bcbf41e36741ae03e5895735618ef0f3 Mon Sep 17 00:00:00 2001 From: tee3 Date: Sat, 7 Mar 2020 08:39:18 -0500 Subject: [PATCH] help: Print help for local modules as well. (#423) --- src/options/help.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/options/help.jam b/src/options/help.jam index abab3770e..cbd303776 100644 --- a/src/options/help.jam +++ b/src/options/help.jam @@ -48,7 +48,7 @@ rule process ( { case --help-internal : local path-to-modules = [ modules.peek : BOOST_BUILD_PATH ] ; - path-to-modules ?= . ; + path-to-modules += . ; local possible-modules = [ GLOB $(path-to-modules) : *\\.jam ] ; local not-modules = [ GLOB $(path-to-modules) : *$(.not-modules)\\.jam ] ; local modules-to-list = @@ -177,7 +177,7 @@ local rule split-symbol ( ) { local path-to-modules = [ modules.peek : BOOST_BUILD_PATH ] ; - path-to-modules ?= . ; + path-to-modules += . ; local module-name = $(symbol) ; local symbol-name = ; local result = ;