This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch releases/9.1 in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/releases/9.1 by this push: new 4fac1c1 Make programs under apps/bin executable to generate symtab file rightly 4fac1c1 is described below commit 4fac1c185c01adfa84f04618af9be7b9c4b884f5 Author: liuhaitao <liuhai...@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 <liuhai...@xiaomi.com> --- Application.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Application.mk b/Application.mk index 049c9d8..5f199bb 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