You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by je...@apache.org on 2020/07/29 13:22:34 UTC

[incubator-nuttx-apps] 03/05: system/hex2bin: Fix compilation error

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

jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit fb26ef28c61315a6d2734e52c33118a67568be62
Author: SPRESENSE <41...@users.noreply.github.com>
AuthorDate: Tue Jul 28 11:57:30 2020 +0900

    system/hex2bin: Fix compilation error
    
    Avoid overwrite the PROGNAME.
---
 system/hex2bin/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/hex2bin/Makefile b/system/hex2bin/Makefile
index ed98296..335d496 100644
--- a/system/hex2bin/Makefile
+++ b/system/hex2bin/Makefile
@@ -46,7 +46,7 @@ endif
 
 ifeq ($(CONFIG_SYSTEM_HEX2MEM_BUILTIN),y)
   MAINSRC += hex2mem_main.c
-  PROGNAME = hex2mem
+  PROGNAME += hex2mem
   STACKSIZE += $(CONFIG_SYSTEM_HEX2MEM_STACKSIZE)
   PRIORITY += $(CONFIG_SYSTEM_HEX2MEM_PRIORITY)
 endif