1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/makefiles/tools/kconfiglib.inc.mk
MrKevinWeiss 0489630aa7
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.
2022-08-22 11:35:56 +02:00

16 lines
464 B
Makefile

# Define tools to use
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):
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib not found - getting it"
@$(MAKE) -C $(RIOTTOOLS)/kconfiglib > /dev/null
@$(QUIETMESSAGES) echo "[INFO] Kconfiglib downloaded"
$(GENCONFIG): $(BASE_MENUCONFIG)