Skip to content
Snippets Groups Projects
Commit d83f7753 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

shell: fix condition for ping command

parent 659faaff
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,10 @@ endif ...@@ -44,7 +44,10 @@ endif
ifneq (,$(filter gnrc_ipv6_blacklist,$(USEMODULE))) ifneq (,$(filter gnrc_ipv6_blacklist,$(USEMODULE)))
SRC += sc_blacklist.c SRC += sc_blacklist.c
endif endif
ifneq (,$(filter gnrc_icmpv6_echo xtimer,$(USEMODULE))) # The ping command in sc_icmpv6_echo requires xtimer, too. However, this is
# implicitly pulled in by gnrc_ipv6_netif (which is a dependency of gnrc_ipv6)
# already.
ifneq (,$(filter gnrc_icmpv6_echo,$(USEMODULE)))
SRC += sc_icmpv6_echo.c SRC += sc_icmpv6_echo.c
endif endif
ifneq (,$(filter gnrc_zep,$(USEMODULE))) ifneq (,$(filter gnrc_zep,$(USEMODULE)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment