1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #5113 from OlegHahm/shell_commands_minor_fix

shell: fix condition for ping command
This commit is contained in:
Martine Lenders 2016-03-20 21:00:21 +01:00
commit ed5434e18f

View File

@ -44,7 +44,10 @@ endif
ifneq (,$(filter gnrc_ipv6_blacklist,$(USEMODULE)))
SRC += sc_blacklist.c
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
endif
ifneq (,$(filter gnrc_zep,$(USEMODULE)))