Fixed: Makefile: %VALUE not expanded in the directory targets.
This commit is contained in:
parent
ca5dfb428b
commit
79651eaa07
|
|
@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Schematic load: problems with fields containing double quotes. (#98)
|
||||
- `--list`: problems with layers and fields specific for the project.
|
||||
(INTI-CMNB/kibot_variants_arduprog#4)
|
||||
- Makefile: %VALUE not expanded in the directory targets.
|
||||
|
||||
|
||||
## [0.11.0] - 2021-04-25
|
||||
|
|
|
|||
|
|
@ -424,7 +424,7 @@ def get_out_targets(outputs, ori_names, targets, dependencies, comments):
|
|||
for out in outputs:
|
||||
name = name2make(out.name)
|
||||
ori_names[name] = out.name
|
||||
tg = out.get_targets(os.path.join(GS.out_dir, out.dir))
|
||||
tg = out.get_targets(os.path.join(GS.out_dir, out.expand_dirname(out.dir)))
|
||||
if not tg:
|
||||
continue
|
||||
targets[name] = [adapt_file_name(fn) for fn in tg]
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 7906366a496dc5cc3549152a16815aa403e0ea61
|
||||
Subproject commit 996fa99440ac35b8b13854d51da40ae39f39052a
|
||||
Loading…
Reference in New Issue