2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

Report locations of user/site config files with --debug-configuration.

[SVN r29367]
This commit is contained in:
Vladimir Prus
2005-06-02 08:10:43 +00:00
parent 7fda7a55ad
commit 402b97049a

View File

@@ -65,6 +65,12 @@ if ! $(ignore-config)
{
modules.load site-config : : /etc $(user-path) ;
}
if --debug-configuration in [ modules.peek : ARGV ]
{
ECHO "notice: loaded site-config.jam from "
[ NORMALIZE_PATH [ modules.binding site-config ] ] ;
}
}
@@ -78,6 +84,12 @@ module user-config
if ! $(ignore-config)
{
modules.load user-config : : $(user-path) ;
if --debug-configuration in [ modules.peek : ARGV ]
{
ECHO "notice: loaded user-config.jam from "
[ NORMALIZE_PATH [ modules.binding user-config ] ] ;
}
}