This is an automated email from the ASF dual-hosted git repository. GUIDINGLI pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 5a42393acfdb632eda7daf6ff9c126800487997e Author: zhangyu117 <[email protected]> AuthorDate: Mon Aug 31 14:09:57 2026 +0800 arch/tricore: fix bug about less ')" in makefile error: Makefile:241: *** unterminated call to function "call": missing ")". Stop. Signed-off-by: zhangyu117 <[email protected]> --- arch/tricore/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/tricore/src/Makefile b/arch/tricore/src/Makefile index 524d0865428..3e28447cbfb 100644 --- a/arch/tricore/src/Makefile +++ b/arch/tricore/src/Makefile @@ -239,7 +239,7 @@ distclean:: clean ifeq ($(BOARDMAKE),y) $(Q) $(MAKE) -C board distclean endif - $(call DELFILE, $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds) + $(call DELFILE, $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)) $(call DELFILE, Make.dep) $(call DELFILE, .depend)
