diff options
| author | Simon John <git@the-jedi.co.uk> | 2014-10-12 09:04:57 +0100 |
|---|---|---|
| committer | Simon John <git@the-jedi.co.uk> | 2014-10-12 09:04:57 +0100 |
| commit | d5c7ed15f73948d66fa32709e939d860f5e876d8 (patch) | |
| tree | 030650baf98620977fd93b6a6cf12e79e9e4376f /Arduino.mk | |
| parent | 2c5a66a973aedfb3325aaf600a40a1df784c436b (diff) | |
Replaced double quotes with singles when passing arguments to
avr-objcopy. Windows doesn't seem to like double quotes.
Fixes issue #272, thanks @vogt31337
Diffstat (limited to 'Arduino.mk')
| -rw-r--r-- | Arduino.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
