aboutsummaryrefslogtreecommitdiff
path: root/build2/context.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-03-13 13:43:54 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-03-13 13:52:32 +0200
commit355534c22ab547bceae189e11ce36fa0dea4e743 (patch)
treec93af55fb30dd13da13bbcadd3729ed386f6e824 /build2/context.cxx
parente5d55e3245e148d675d4be607f1bfa944c4559e7 (diff)
Cutoff append/prepend overrides that come before assignment override
For example: $ b x+=1 x=2 x+=3 Should result in '2 3', not '1 2 3'.
Diffstat (limited to 'build2/context.cxx')
-rw-r--r--build2/context.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/context.cxx b/build2/context.cxx
index f7234a7..7b473e2 100644
--- a/build2/context.cxx
+++ b/build2/context.cxx
@@ -590,7 +590,7 @@ namespace build2
//
// But that's probably ok (the need for a scope-qualified override with
// scope visibility should be pretty rare). Note also that to set the
- // value on the root (global) scope we use !.
+ // value on the global scope we use !.
//
// And so the first token should be a word which can be either a
// variable name (potentially with the directory qualification) or just