diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-10 12:39:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-10-10 12:39:42 +0200 |
commit | 41c1f41245db26acb1bb8c624bae47140bcc56aa (patch) | |
tree | ebb8eadd2c1f2ca99890d6d58522960061c18da9 /libbuild2/build/script | |
parent | eeb155ebc35c5947234f731c333e2bd71ea88974 (diff) |
Don't match group-based targets with fallback rule during configure (GH #364)
Membership of such targets can only be accurately determined by the ad hoc
recipe.
Diffstat (limited to 'libbuild2/build/script')
-rw-r--r-- | libbuild2/build/script/builtin.cli | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libbuild2/build/script/builtin.cli b/libbuild2/build/script/builtin.cli index 5aea034..9639477 100644 --- a/libbuild2/build/script/builtin.cli +++ b/libbuild2/build/script/builtin.cli @@ -103,9 +103,10 @@ namespace build2 // Dynamic target extraction options. // // This functionality is enabled with the --dyn-target option. Only - // the make format is supported, where the listed targets are added as - // ad hoc group members (unless already specified as static members). - // This functionality is not available in the byproduct mode. + // the `make` and `lines` formats are supported (see above), where the + // listed targets are added as ad hoc group members (unless already + // specified as static members). This functionality is not available + // in the byproduct mode. // string --target-what; // Target kind, e.g., "source". |