From: Angus Gratton Date: Fri, 11 Nov 2016 03:44:10 +0000 (+1100) Subject: Build system: Don't shell-quote SEPARATOR variable or it evaluates as a bunch of... X-Git-Tag: v1.0~62^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcdebda8e47961751d35031272350f6a33a004b4;p=esp-idf Build system: Don't shell-quote SEPARATOR variable or it evaluates as a bunch of wildcards! --- diff --git a/components/bootloader/Makefile.projbuild b/components/bootloader/Makefile.projbuild index 1b1c07bea3..3ed5e18783 100644 --- a/components/bootloader/Makefile.projbuild +++ b/components/bootloader/Makefile.projbuild @@ -37,7 +37,7 @@ ifdef CONFIG_SECURE_BOOTLOADER_DISABLED # with 'make flash' and no warnings are printed. bootloader: $(BOOTLOADER_BIN) - @echo "$(SEPARATOR)" + @echo $(SEPARATOR) @echo "Bootloader built. Default flash command is:" @echo "$(ESPTOOLPY_WRITE_FLASH) 0x1000 $(BOOTLOADER_BIN)"