From 6448258aac6aacf2720d5d18bdcceec24fe9e611 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Tue, 18 Apr 2023 14:39:36 +0200 Subject: [PATCH] sys/shell: Add missing dependency The shell_cmds module depends on the shell module. This was correctly added to KConfig, but the Makefile dependencies missed this one. This commit adds the missing dep. --- sys/shell/Makefile.dep | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/shell/Makefile.dep b/sys/shell/Makefile.dep index eb2360479c..ea24f60379 100644 --- a/sys/shell/Makefile.dep +++ b/sys/shell/Makefile.dep @@ -3,6 +3,10 @@ ifneq (,$(filter shell_cmd_%,$(USEMODULE))) USEMODULE += shell_cmds endif +ifneq (,$(filter shell_cmds,$(USEMODULE))) + USEMODULE += shell +endif + ifneq (,$(filter shell_commands,$(USEMODULE))) # shell_commands has been renamed to shell_cmds_default, but let's keep this # for backward compatibility