You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/05/08 16:38:17 UTC

[incubator-nuttx] 01/02: tools/LibTargets.mk: Remove # from the action of syscall

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

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

commit e7e81dd74df50e0ef5b3075e24b87ac70b6210ba
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Thu May 7 18:38:22 2020 +0800

    tools/LibTargets.mk: Remove # from the action of syscall
    
    this typo error make libstub.a is compiled without __KERNEL__
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 tools/LibTargets.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/LibTargets.mk b/tools/LibTargets.mk
index 16caf1b..c6f281c 100644
--- a/tools/LibTargets.mk
+++ b/tools/LibTargets.mk
@@ -143,7 +143,7 @@ staging$(DELIM)libopenamp$(LIBEXT): openamp$(DELIM)libopenamp$(LIBEXT)
 	$(Q) $(call INSTALL_LIB,$<,$@)
 
 syscall$(DELIM)libstubs$(LIBEXT): context
-	$(Q) $(MAKE) -C syscall TOPDIR="$(TOPDIR)" libstubs$(LIBEXT) # EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)"
+	$(Q) $(MAKE) -C syscall TOPDIR="$(TOPDIR)" libstubs$(LIBEXT) EXTRAFLAGS="$(KDEFINE) $(EXTRAFLAGS)"
 
 staging$(DELIM)libstubs$(LIBEXT): syscall$(DELIM)libstubs$(LIBEXT)
 	$(Q) $(call INSTALL_LIB,$<,$@)