From a5b3b0569fe82b14cd9e513b78b129e20f14eb40 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 12 Mar 2021 15:02:36 -0300 Subject: [PATCH] Fix `out_pcb` and `out_sch` targets Introduced by c104d14511b0a63e401b3dbac53ee1d67cdd65ea --- kibot/kiplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/kiplot.py b/kibot/kiplot.py index f4c40e05..6067e633 100644 --- a/kibot/kiplot.py +++ b/kibot/kiplot.py @@ -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')