This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d57e3dba6 tools/esp32s3/Config.mk: fix "unterminated call to 
function" error
0d57e3dba6 is described below

commit 0d57e3dba656cf47e5a9a98ddd4a2ba59643b74d
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Fri Oct 18 11:07:22 2024 +0900

    tools/esp32s3/Config.mk: fix "unterminated call to function" error
    
    this # would be parsed by make as a start of a comment.
---
 tools/esp32s3/Config.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/esp32s3/Config.mk b/tools/esp32s3/Config.mk
index d21294c887..1e27335812 100644
--- a/tools/esp32s3/Config.mk
+++ b/tools/esp32s3/Config.mk
@@ -114,7 +114,7 @@ endif
 ESPTOOL_BINS += $(FLASH_APP)
 
 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
 
 # MERGEBIN -- Merge raw binary files into a single file

Reply via email to