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

Add comment

[SVN r25699]
This commit is contained in:
Vladimir Prus
2004-10-13 06:58:35 +00:00
parent 51d3e6c8e0
commit da19826066

View File

@@ -146,6 +146,12 @@ class stage-target-class : basic-target
local result ;
for local i in $(source-targets)
{
# Intermediate targets are those with "unrequested" types.
# For example, given "exe a : a.cpp" we can end with RSP
# target on windows, and it will be marked as "intermediate".
# By default, we don't install such targets.
# If specific list of installable types is given, we don't
# care if target is intermediate or not.
if ! [ $(i).intermediate ] && [ $(i).type ] != SEARCHED_LIB
{
local staged-targets ;