From f3cd997e737e01bc4e82ee251a2316834666a8d3 Mon Sep 17 00:00:00 2001 From: Gautier Hattenberger Date: Tue, 30 Nov 2010 15:54:41 +0100 Subject: [PATCH] switch order of subsystem parsing --- sw/tools/gen_aircraft.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/tools/gen_aircraft.ml b/sw/tools/gen_aircraft.ml index ed3d856b7a..c52957c47c 100644 --- a/sw/tools/gen_aircraft.ml +++ b/sw/tools/gen_aircraft.ml @@ -280,8 +280,8 @@ let parse_firmware = fun makefile_ac firmware -> List.iter (print_firmware_define makefile_ac) t_defines; fprintf makefile_ac "include $(PAPARAZZI_SRC)/conf/boards/%s.makefile\n" (Xml.attrib target "board"); fprintf makefile_ac "include $(PAPARAZZI_SRC)/conf/autopilot/%s.makefile\n" (Xml.attrib firmware "name"); - List.iter (print_firmware_subsystem makefile_ac firmware) subsystems; List.iter (print_firmware_subsystem makefile_ac firmware) t_subsystems; + List.iter (print_firmware_subsystem makefile_ac firmware) subsystems; fprintf makefile_ac "endif\n\n" ) targets