Skip to content
Snippets Groups Projects
Commit ed5434e1 authored by Martine Lenders's avatar Martine Lenders
Browse files

Merge pull request #5113 from OlegHahm/shell_commands_minor_fix

shell: fix condition for ping command
parents 5ecbcca0 d83f7753
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.
Finish editing this message first!
Please register or to comment