mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
sys/Makefile.dep: fix dhcp_relay dependency
Modules select by auto-init modules MUST NOT have dependencies themselfs, dhcp_relay was not respecting that. Instead of having the auto-init module select dhcp_relay, do it the other way around.
This commit is contained in:
parent
ec0df56b67
commit
08dc06d5e0
@ -115,6 +115,7 @@ ifneq (,$(filter dhcpv6_client,$(USEMODULE)))
|
||||
endif
|
||||
|
||||
ifneq (,$(filter dhcpv6_relay,$(USEMODULE)))
|
||||
DEFAULT_MODULE += auto_init_dhcpv6_relay
|
||||
USEMODULE += event
|
||||
USEMODULE += sock_async_event
|
||||
USEMODULE += sock_udp
|
||||
|
@ -4,7 +4,7 @@ RIOTBASE ?= $(CURDIR)/../..
|
||||
|
||||
export TAP ?= tap0
|
||||
|
||||
USEMODULE += auto_init_dhcpv6_relay
|
||||
USEMODULE += dhcpv6_relay
|
||||
USEMODULE += event_thread
|
||||
USEMODULE += gnrc_ipv6_default
|
||||
USEMODULE += gnrc_netif_single # Only one interface used and it makes
|
||||
|
Loading…
Reference in New Issue
Block a user