diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-11-12 14:38:12 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-11-17 16:57:00 +0300 |
commit | a68fa2f5c22cbbfc099dd77cccaf44db4cf85730 (patch) | |
tree | a6faf9babcb8e637d09c8061253d8cd52e670d53 /libbuild2/parser.cxx | |
parent | 8cc7acfc647ab61eecb8feddbd0cbf5ae270e41e (diff) |
Generalize dot escaping in target name rules
Now triple dot and escape sequence can appear almost anywhere in the target
name (see target::split_name() for details).
Diffstat (limited to 'libbuild2/parser.cxx')
-rw-r--r-- | libbuild2/parser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/parser.cxx b/libbuild2/parser.cxx index 033395d..8676c9d 100644 --- a/libbuild2/parser.cxx +++ b/libbuild2/parser.cxx @@ -4924,7 +4924,7 @@ namespace build2 // Post-process the result: remove extension, reverse target type-specific // pattern/match amendments (essentially: cxx{*} -> *.cxx -> foo.cxx -> - // cxx{foo}), and recombined the result. + // cxx{foo}), and recombine the result. // for (name& n: r) { |