mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
shell_cmd_gnrc_udp: add missing netutils dependency
The `gnrc_udp` shell command uses the function `netutils_get_ipv6()` but does not include the corresponding module `netutils`. The only reason most applications that use `shell_cmd_gnrc_udp` link is because they also include the `shell_cmd_gnrc_icmpv6_echo` module (e.g. implicit via `gnrc_ipcmpv6_echo`), which includes this dependency.
This commit is contained in:
parent
af84b09dce
commit
149aadc841
@ -208,6 +208,7 @@ endif
|
||||
ifneq (,$(filter shell_cmd_gnrc_udp,$(USEMODULE)))
|
||||
USEMODULE += gnrc_udp
|
||||
USEMODULE += gnrc_pktdump
|
||||
USEMODULE += netutils
|
||||
endif
|
||||
ifneq (,$(filter shell_cmd_i2c_scan,$(USEMODULE)))
|
||||
FEATURES_REQUIRED += periph_i2c
|
||||
|
Loading…
Reference in New Issue
Block a user