From da19826066f9f581248968222ecb223642e1ddbd Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 13 Oct 2004 06:58:35 +0000 Subject: [PATCH] Add comment [SVN r25699] --- v2/tools/stage.jam | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/v2/tools/stage.jam b/v2/tools/stage.jam index f0fb6f1f8..bb1c7e102 100644 --- a/v2/tools/stage.jam +++ b/v2/tools/stage.jam @@ -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 ;