diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-29 14:31:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-29 14:31:00 +0200 |
commit | b1d778b2303c3dcb3f70e4b29a0a9bcba72c11d6 (patch) | |
tree | c300eebf51f2f72d37bfea48114ffcefedc61fc5 /build/algorithm | |
parent | 15d7a706a5f6904a4f295b5cddd7cbd51b04e863 (diff) |
Allow for target group members to remain unresolved
This, for example, can happen when we have a fallback rule for dist(update)
or configure(update).
Diffstat (limited to 'build/algorithm')
-rw-r--r-- | build/algorithm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/algorithm b/build/algorithm index 375cebb..d144d6c 100644 --- a/build/algorithm +++ b/build/algorithm @@ -121,8 +121,10 @@ namespace build void search_and_match_prerequisite_members (action, target&, const dir_path&); - // Unless already available, match, and, if necessary, execute - // the group in order to obtain its members list. + // Unless already available, match, and, if necessary, execute the group + // in order to obtain its members list. Note that even after that the + // member's list might still not be available (e.g., if some wildcard/ + // fallback rule matched). // group_view resolve_group_members (action, target&); |