tools: Fix Config.mk

Summary:
- I noticed that the following build error happened on my machine.

  make -C sched libsched.a EXTRAFLAGS="-D__KERNEL__ "
  make[1]: Entering directory '/mnt/m2ssd/opensource/RTOS/tmp/nuttx/sched'
  /bin/sh: 1: echoCC: clock/clock_initialize.c : not found

- This commit fixes this issue

Impact:
- Should be none

Testing:
- Build on ubuntu 18.04 x86_64

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
Masayuki Ishikawa 2023-02-03 22:41:14 +09:00 committed by Petro Karashchenko
parent 02a9e76f73
commit 6097f12765
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ else ifeq ($(V),)
endif
ifeq ($(ECHO_BEGIN),)
export ECHO_BEGIN=@echo
export ECHO_BEGIN=@echo # keep a trailing space here
export ECHO_END=
endif