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

Output the initialized toolsets when given "--show-configuration" option.

[SVN r35726]
This commit is contained in:
Rene Rivera
2006-10-24 18:07:50 +00:00
parent 6af6757f16
commit 5e4b178fa6

View File

@@ -22,6 +22,10 @@ if [ MATCH (--debug-configuration) : [ modules.peek : ARGV ] ]
{
.debug-configuration = true ;
}
if [ MATCH (--show-configuration) : [ modules.peek : ARGV ] ]
{
.show-configuration = true ;
}
# Configurations
#
@@ -212,6 +216,10 @@ rule check-init-parameters ( toolset : * )
.all-signatures += $(sig) ;
.init-loc.$(sig) = [ errors.nearest-user-location ] ;
if $(.show-configuration)
{
ECHO notice: $(condition) ;
}
return $(condition) ;
}