mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
makefiles: quiet messages on CI
After introducing #18423 there are occasional messages that still happen. These messages cause a diff output when testing with TEST_KCONFIG=1. This then causes a failure when comparing make/kconfig modules and packages.
This commit is contained in:
parent
2dd59236c8
commit
0489630aa7
@ -3,9 +3,13 @@ MENUCONFIG ?= $(RIOTTOOLS)/kconfiglib/riot_menuconfig.py
|
||||
BASE_MENUCONFIG ?= $(RIOTTOOLS)/kconfiglib/menuconfig.py
|
||||
GENCONFIG := $(RIOTTOOLS)/kconfiglib/genconfig.py
|
||||
|
||||
ifeq ($(RIOT_CI_BUILD),1)
|
||||
QUIETMESSAGES=\#
|
||||
endif
|
||||
$(BASE_MENUCONFIG):
|
||||
@echo "[INFO] Kconfiglib not found - getting it"
|
||||
@$(MAKE) -C $(RIOTTOOLS)/kconfiglib
|
||||
@echo "[INFO] Kconfiglib downloaded"
|
||||
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib not found - getting it"
|
||||
@$(MAKE) -C $(RIOTTOOLS)/kconfiglib > /dev/null
|
||||
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib downloaded"
|
||||
|
||||
|
||||
$(GENCONFIG): $(BASE_MENUCONFIG)
|
||||
|
Loading…
Reference in New Issue
Block a user