Fix `out_pcb` and `out_sch` targets

Introduced by c104d14511
This commit is contained in:
Salvador E. Tropea 2021-03-12 15:02:36 -03:00
parent 4f73de1157
commit a5b3b0569f
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ def generate_makefile(makefile, cfg_file, outputs, kibot_sys=False):
# Preflights
pre_pcb_targets, pre_sch_targets = get_pre_targets(targets, dependencies, is_pre)
# Outputs
out_pcb_targets = out_sch_targets = get_out_targets(outputs, ori_names, targets, dependencies, comments)
out_pcb_targets, out_sch_targets = get_out_targets(outputs, ori_names, targets, dependencies, comments)
# all target
f.write('#\n# Default target\n#\n')
f.write('all: '+' '.join(targets.keys())+'\n\n')