From 02f7e3541f166ab72b075b6be03531d03ea0ced3 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Wed, 13 Oct 2021 16:54:48 +0200 Subject: [PATCH] Makefile.include: remove warning about EXTERNAL_MODULE_DIRS API change The warning about the API change is scheduled to be removed by 2020.10. Since the release has been branched off, we can now drop the warning going forward. --- Makefile.include | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Makefile.include b/Makefile.include index 49d833c663..f93bbb740a 100644 --- a/Makefile.include +++ b/Makefile.include @@ -57,7 +57,6 @@ BINDIR ?= $(BINDIRBASE)/$(BOARD) PKGDIRBASE ?= $(RIOTBASE)/build/pkg DLCACHE ?= $(RIOTTOOLS)/dlcache/dlcache.sh DLCACHE_DIR ?= $(RIOTBASE)/.dlcache -WARNING_EXTERNAL_MODULE_DIRS ?= 1 RIOT_VERSION_DUMMY_CODE ?= RIOT_VERSION_NUM\(2042,5,23,0\) # include CI info such as BOARD_INSUFFICIENT_MEMORY, if existing @@ -115,14 +114,6 @@ ifneq ($(RIOT_CI_BUILD),1) $(warning Using BOARDSDIR is deprecated use EXTERNAL_BOARD_DIRS instead) $(info EXTERNAL_BOARD_DIRS can contain multiple folders separated by space) endif - - # API change warning for EXTERNAL_MODULE_DIRS, remove by 2021.10 - ifneq (,$(EXTERNAL_MODULE_DIRS)) - ifeq (1,$(WARNING_EXTERNAL_MODULE_DIRS)) - $(info Warning! EXTERNAL_MODULE_DIRS is a search folder since 2021.07-branch, see \ - https://doc.riot-os.org/creating-modules.html#modules-outside-of-riotbase) - endif - endif endif endif