You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2020/06/24 13:03:04 UTC

[incubator-nuttx-apps] branch master updated: apps/makefile/implicit rules: completion the obj path

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

aguettouche 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 4ae186d  apps/makefile/implicit rules: completion the obj path
4ae186d is described below

commit 4ae186d89a9095f141ef0855358ef692f3c9afa8
Author: chao.an <an...@xiaomi.com>
AuthorDate: Mon May 25 16:36:42 2020 +0800

    apps/makefile/implicit rules: completion the obj path
    
    Change-Id: I2587a9e8de0852707fe6c775d487cc3a7849aef9
    Signed-off-by: chao.an <an...@xiaomi.com>
---
 Application.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Application.mk b/Application.mk
index 049c9d8..9f3d47d 100644
--- a/Application.mk
+++ b/Application.mk
@@ -129,9 +129,9 @@ $(CXXOBJS): %$(SUFFIX)$(OBJEXT): %$(CXXEXT)
 
 .built: $(OBJS)
 ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
-	$(call ARLOCK, "${shell cygpath -w $(BIN)}", $(OBJS))
+	$(call ARLOCK, "${shell cygpath -w $(BIN)}", $^)
 else
-	$(call ARLOCK, $(BIN), $(OBJS))
+	$(call ARLOCK, $(BIN), $^)
 endif
 	$(Q) touch $@