Skip to content

Commit 8966d15

Browse files
authored
Merge pull request #3415 from bridadan/fix_make_echo
[make exporters] Adding quotes to echo statements
2 parents 92f2c38 + 3975ff3 commit 8966d15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/export/makefile/Makefile.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ $(PROJECT).elf: $(OBJECTS) $(SYS_OBJECTS) $(LINKER_SCRIPT)
127127

128128
$(PROJECT).bin: $(PROJECT).elf
129129
{%- block elf2bin -%}{%- endblock %}
130-
{% if not hex_files %} +@echo ===== bin file ready to flash: $(OBJDIR)/$@ ===== {% endif %}
130+
{% if not hex_files %} +@echo "===== bin file ready to flash: $(OBJDIR)/$@ =====" {% endif %}
131131

132132
$(PROJECT).hex: $(PROJECT).elf
133133
{%- block elf2hex -%}{%- endblock %}
@@ -136,7 +136,7 @@ $(PROJECT).hex: $(PROJECT).elf
136136
$(PROJECT)-combined.hex: $(PROJECT).hex
137137
+@echo "NOTE: the $(SREC_CAT) binary is required to be present in your PATH. Please see http://srecord.sourceforge.net/ for more information."
138138
$(SREC_CAT) {% for f in hex_files %}{{f}} {% endfor %} -intel $(PROJECT).hex -intel -o $(PROJECT)-combined.hex -intel --line-length=44
139-
+@echo ===== hex file ready to flash: $(OBJDIR)/$@ =====
139+
+@echo "===== hex file ready to flash: $(OBJDIR)/$@ ====="
140140
{% endif %}
141141
# Rules
142142
###############################################################################

0 commit comments

Comments
 (0)