From 6158e136e105aae2f032a159ce807db68abee281 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 8 Nov 2018 15:24:01 +0200 Subject: Make command line variable override scope syntax consistent with buildfile Before: $ b dir/:foo=bar ... After: $ b dir/foo=bar Alternatively (the buildfile syntax): $ b 'dir/ foo=bar' Note that the (rarely used) scope visibility modifier now leads to a double slash: $ b dir//foo=bar --- old-tests/variable/override/test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'old-tests') diff --git a/old-tests/variable/override/test.sh b/old-tests/variable/override/test.sh index 710cf28..76409d8 100755 --- a/old-tests/variable/override/test.sh +++ b/old-tests/variable/override/test.sh @@ -83,7 +83,7 @@ p/d : X p/d/t : X EOF -test ./:v=X <