tools/esp32s3/Config.mk: fix "unterminated call to function" error
this # would be parsed by make as a start of a comment.
This commit is contained in:
parent
a7f7afe019
commit
0d57e3dba6
|
@ -114,7 +114,7 @@ endif
|
||||||
ESPTOOL_BINS += $(FLASH_APP)
|
ESPTOOL_BINS += $(FLASH_APP)
|
||||||
|
|
||||||
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
||||||
ESPTOOL_BINS += $(shell printf "%#x\n" $$(( $(CONFIG_ESP32S3_KERNEL_OFFSET) + $(CONFIG_ESP32S3_KERNEL_IMAGE_SIZE) ))) nuttx_user.bin
|
ESPTOOL_BINS += $(shell printf "%\#x\n" $$(( $(CONFIG_ESP32S3_KERNEL_OFFSET) + $(CONFIG_ESP32S3_KERNEL_IMAGE_SIZE) ))) nuttx_user.bin
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# MERGEBIN -- Merge raw binary files into a single file
|
# MERGEBIN -- Merge raw binary files into a single file
|
||||||
|
|
Loading…
Reference in New Issue