mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
examples/gnrc_border_router: Restore UHCP conditional default
The space inside the expression made the ifneq always non-equal; the intended behavior is "if we're using any of these interfaces, or REUSE_TAP is set".
This commit is contained in:
parent
ca3b259add
commit
e9f793c5e4
@ -43,7 +43,7 @@ USEMODULE += ps
|
||||
#USEMODULE += gnrc_ipv6_nib_dns # include RDNSS option handling
|
||||
|
||||
# When using a regular network uplink we should use DHCPv6
|
||||
ifneq (,$(filter cdc-ecm wifi ethernet,$(UPLINK)) $(REUSE_TAP))
|
||||
ifneq (,$(filter cdc-ecm wifi ethernet,$(UPLINK))$(REUSE_TAP))
|
||||
PREFIX_CONF ?= dhcpv6
|
||||
else
|
||||
PREFIX_CONF ?= uhcp
|
||||
|
Loading…
Reference in New Issue
Block a user