mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
0489630aa7
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.
16 lines
464 B
Makefile
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)
|