From 80ce4fc9956927d4adb8b3b81cd7abc690d4158b Mon Sep 17 00:00:00 2001 From: Oleg Semyonov Date: Sat, 18 May 2013 17:25:26 +0300 Subject: [PATCH] Fix weird error of running python script with extra --verbose option as a part of script name This error of building any EF targets was found on Windows if used with make V=1 verbose output option. The '--verbose' python script option was used by the Windows make as a part of python script file name with 'file not found' error. Now it works. Still can't get the cause of that error, though... --- flight/targets/common/entire_flash/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flight/targets/common/entire_flash/Makefile b/flight/targets/common/entire_flash/Makefile index 8a1826b2c..12c525142 100644 --- a/flight/targets/common/entire_flash/Makefile +++ b/flight/targets/common/entire_flash/Makefile @@ -42,7 +42,8 @@ FWINFO_BIN = $(FW_BIN).firmware_info.bin $(OUTDIR)/$(TARGET).bin: $(BL_BIN) $(FW_BIN) $(V0) @$(ECHO) $(MSG_FLASH_IMG) $@ - $(V1) $(ENTIRE_FLASH) $(EF_VERBOSE) \ + $(V1) $(ENTIRE_FLASH) \ + $(EF_VERBOSE) \ --bl-bank-base=$(BL_BANK_BASE) \ --bl-bank-size=$(BL_BANK_SIZE) \ --fw-bank-base=$(FW_BANK_BASE) \