aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon John <git@the-jedi.co.uk>2014-10-12 09:04:57 +0100
committerSimon John <git@the-jedi.co.uk>2014-10-12 09:04:57 +0100
commitd5c7ed15f73948d66fa32709e939d860f5e876d8 (patch)
tree030650baf98620977fd93b6a6cf12e79e9e4376f
parent2c5a66a973aedfb3325aaf600a40a1df784c436b (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
-rw-r--r--Arduino.mk2
-rw-r--r--HISTORY.md1
2 files changed, 2 insertions, 1 deletions
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)
diff --git a/HISTORY.md b/HISTORY.md
index cdf792a..9b2d3c5 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -25,6 +25,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
- Fix: Update "make show_boards" regex to work with the Due in 1.5. (https://github.com/sej7278)
- Fix: Allow user libaries/sketches to have the same name as system libs. (Issue #244, #229). (https://github.com/sej7278)
- Fix: Remove impact of travis-ci from regular users. (Issue #258). (https://github.com/sej7278)
+- Fix: objcopy quoting issue on Windows. (Issue #272). (https://github.com/sej7278)
### 1.3.4 (2014-07-12)
- Tweak: Allow spaces in "Serial.begin (....)". (Issue #190) (https://github.com/pdav)