From 2a5338540fc31355fa1bfa3ceb3214884e23141a Mon Sep 17 00:00:00 2001 From: Sander Eikelenboom Date: Thu, 9 Jan 2014 20:18:43 +0100 Subject: Prevent build failure by not splitting line in the middle of arguments to checkrom.py script File "./scripts/checkrom.py", line 24, in main objinfo, finalsize, rawfile, outfile = sys.argv[1:] ValueError: need more than 3 values to unpack Signed-off-by: Sander Eikelenboom --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 414c90a..de91329 100644 --- a/Makefile +++ b/Makefile @@ -182,8 +182,7 @@ $(OUT)bios.bin.prep: $(OUT)rom.o scripts/checkrom.py $(Q)rm -f $(OUT)bios.bin $(OUT)Csm16.bin $(OUT)bios.bin.elf $(Q)$(OBJDUMP) -thr $< > $<.objdump $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw - $(Q)$(PYTHON) ./scripts/checkrom.py $<.objdump $(CONFIG_ROM_SIZE) \ - $(OUT)bios.bin.raw $(OUT)bios.bin.prep + $(Q)$(PYTHON) ./scripts/checkrom.py $<.objdump $(CONFIG_ROM_SIZE) $(OUT)bios.bin.raw $(OUT)bios.bin.prep $(OUT)bios.bin: $(OUT)bios.bin.prep @echo " Creating $@" -- cgit v1.1