From 355534c22ab547bceae189e11ce36fa0dea4e743 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 13 Mar 2019 13:43:54 +0200 Subject: 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'. --- build2/context.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/context.cxx') 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 -- cgit v1.1