aboutsummaryrefslogtreecommitdiff
path: root/build2/parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/parser.cxx')
-rw-r--r--build2/parser.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/build2/parser.cxx b/build2/parser.cxx
index 99e4227..a64a94e 100644
--- a/build2/parser.cxx
+++ b/build2/parser.cxx
@@ -2680,7 +2680,10 @@ namespace build2
{
path_ = &name;
- lexer l (is, *path_, &paren_processor);
+ // We do "effective escaping" and only for ['"\$(] (basically what's
+ // necessary inside a double-quoted literal plus the single quote).
+ //
+ lexer l (is, *path_, "\'\"\\$(", &paren_processor);
lexer_ = &l;
target_ = nullptr;
scope_ = root_ = global_scope;