mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
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.
This commit is contained in:
parent
5e28ec5a63
commit
6448258aac
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user