diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-26 09:53:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-05-03 15:23:09 +0200 |
commit | 57c4e39dcb8eb6013e22cfe82597111c5c6a55af (patch) | |
tree | eaf81473dbda167a187f01a632d39ba2f4908c71 /old-tests/variable/type-pattern-append | |
parent | 4b9de5c80934772dbc5503e65e265da452ca356a (diff) |
Regularize directory target/scope-specific variable assignment syntax
Diffstat (limited to 'old-tests/variable/type-pattern-append')
-rw-r--r-- | old-tests/variable/type-pattern-append/buildfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/old-tests/variable/type-pattern-append/buildfile b/old-tests/variable/type-pattern-append/buildfile index a91b340..348f70f 100644 --- a/old-tests/variable/type-pattern-append/buildfile +++ b/old-tests/variable/type-pattern-append/buildfile @@ -41,7 +41,7 @@ x = $(dir{./}:x5) print $(dir{./}:x5) x6 = [string] a -sub/: +sub/ { dir{*}: x6 += b dir{*}: x6 += [null] @@ -50,7 +50,7 @@ sub/: x7 = [string] b dir{*}: x7 =+ a -sub/: +sub/ { dir{*}: x7 += c print $(dir{./}:x7) |