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 2021/03/25 09:23:42 UTC

[incubator-nuttx-apps] branch master updated: build: Fix deplist regeneration after config update

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 a1df2c6  build: Fix deplist regeneration after config update
a1df2c6 is described below

commit a1df2c634f4a88dbe43a17bc9cce3ec272633d1f
Author: Gustavo Henrique Nihei <gu...@espressif.com>
AuthorDate: Wed Mar 24 17:50:17 2021 -0300

    build: Fix deplist regeneration after config update
---
 Application.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Application.mk b/Application.mk
index e6f8f63..d1dba98 100644
--- a/Application.mk
+++ b/Application.mk
@@ -90,8 +90,12 @@ ifneq ($(BUILD_MODULE),y)
   OBJS += $(MAINCOBJ) $(MAINCXXOBJ)
 endif
 
+DEPPATH += --dep-path .
+DEPPATH += --obj-path .
 DEPPATH += --obj-suffix $(SUFFIX)$(OBJEXT)
 
+VPATH += :.
+
 # Targets follow
 
 all:: $(OBJS)