tool/Config.mk:use bash with or without verbosity enabled

Signed-off-by: xuxin19 <xuxin19@xiaomi.com>
This commit is contained in:
xuxin19
2023-12-21 15:57:28 +08:00
committed by Xiang Xiao
parent 40843b79eb
commit 274bff234a

View File

@@ -38,13 +38,15 @@ endif
ifeq ($(CONFIG_WINDOWS_NATIVE),y) ifeq ($(CONFIG_WINDOWS_NATIVE),y)
export SHELL=cmd export SHELL=cmd
else ifeq ($(V),) else
BASHCMD := $(shell command -v bash 2> /dev/null) BASHCMD := $(shell command -v bash 2> /dev/null)
ifneq ($(BASHCMD),) ifneq ($(BASHCMD),)
export SHELL=$(BASHCMD) export SHELL=$(BASHCMD)
ifeq ($(V),)
export ECHO_BEGIN=@echo -ne "\033[1K\r" export ECHO_BEGIN=@echo -ne "\033[1K\r"
export ECHO_END=$(ECHO_BEGIN) export ECHO_END=$(ECHO_BEGIN)
endif endif
endif
endif endif
ifeq ($(ECHO_BEGIN),) ifeq ($(ECHO_BEGIN),)