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/01/21 16:44:54 UTC

[incubator-nuttx-apps] branch master updated: Makefile: Fix more warning: jobserver unavailable: using -j1. Add '+' to parent make rule. (#27)

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 270b971  Makefile: Fix more warning: jobserver unavailable: using -j1. Add '+' to parent make rule. (#27)
270b971 is described below

commit 270b97190bce7d6958f5a2284cd2305e4e8393b3
Author: liuguo09 <li...@xiaomi.com>
AuthorDate: Wed Jan 22 00:44:45 2020 +0800

    Makefile: Fix more warning: jobserver unavailable: using -j1. Add '+' to parent make rule. (#27)
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 examples/thttpd/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/thttpd/Makefile b/examples/thttpd/Makefile
index 74e0072..8d37e65 100644
--- a/examples/thttpd/Makefile
+++ b/examples/thttpd/Makefile
@@ -56,11 +56,11 @@ MODULE = $(CONFIG_EXAMPLES_THTTPD)
 all::
 
 context::
-	@$(CONTENT_MAKE) context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
+	+$(Q) $(CONTENT_MAKE) context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
 
 depend::
 	@$(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
-	@$(CONTENT_MAKE) depend TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
+	+$(Q) $(CONTENT_MAKE) depend TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)
 
 clean::
 	+$(Q) $(CONTENT_MAKE) clean TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" CROSSDEV=$(CROSSDEV)