1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-18 03:52:11 +01:00

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...
This commit is contained in:
Oleg Semyonov 2013-05-18 17:25:26 +03:00
parent bc4f615c25
commit 80ce4fc995

View File

@ -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) \