From d5c7ed15f73948d66fa32709e939d860f5e876d8 Mon Sep 17 00:00:00 2001 From: Simon John Date: Sun, 12 Oct 2014 09:04:57 +0100 Subject: Replaced double quotes with singles when passing arguments to avr-objcopy. Windows doesn't seem to like double quotes. Fixes issue #272, thanks @vogt31337 --- Arduino.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Arduino.mk') diff --git a/Arduino.mk b/Arduino.mk index 1981e52..76a7d5e 100644 --- a/Arduino.mk +++ b/Arduino.mk @@ -1132,7 +1132,7 @@ endif $(OBJDIR)/%.eep: $(OBJDIR)/%.elf $(COMMON_DEPS) @$(MKDIR) $(dir $@) - -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ + -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom='alloc,load' \ --change-section-lma .eeprom=0 -O ihex $< $@ $(OBJDIR)/%.lss: $(OBJDIR)/%.elf $(COMMON_DEPS) -- cgit v1.2.3