You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ma...@apache.org on 2020/06/26 05:20:21 UTC

[incubator-nuttx-apps] branch master updated: Make programs under apps/bin executable to generate symtab file rightly

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

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


The following commit(s) were added to refs/heads/master by this push:
     new dbfa8d5  Make programs under apps/bin executable to generate symtab file rightly
dbfa8d5 is described below

commit dbfa8d5f13580f4a12c38097cc4475c8ed81af28
Author: liuhaitao <li...@xiaomi.com>
AuthorDate: Mon Jun 22 20:04:25 2020 +0800

    Make programs under apps/bin executable to generate symtab file rightly
    
    Make programs under apps/bin executable since tools/mksymtab.sh called with
    'find $dir -type f -perm -a=x 2>/dev/null'. So generate symtab file rightly.
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 Application.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Application.mk b/Application.mk
index 9f3d47d..49103c3 100644
--- a/Application.mk
+++ b/Application.mk
@@ -158,6 +158,7 @@ ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
 else
 	$(call ELFLD,$(firstword $(PROGOBJ)),$(firstword $(PROGLIST)))
 endif
+	$(Q) chmod +x $(firstword $(PROGLIST))
 ifneq ($(CONFIG_DEBUG_SYMBOLS),y)
 	$(Q) $(STRIP) $(firstword $(PROGLIST))
 endif