mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 05:12:57 +01:00
Merge pull request #13132 from leandrolanzieri/pr/pkg/tinydtls_fix_contrib_include
pkg/tinydtls: Only include contrib folder if using tinydtls_sock_dtls
This commit is contained in:
commit
18d15b6f27
@ -7,7 +7,6 @@ ifeq ($(TOOLCHAIN), llvm)
|
||||
endif
|
||||
|
||||
INCLUDES += -I$(RIOTBASE)/pkg/tinydtls/include
|
||||
DIRS += $(RIOTBASE)/pkg/tinydtls/contrib
|
||||
|
||||
ifneq (,$(filter tinydtls,$(USEMODULE)))
|
||||
INCLUDES += -I$(PKG_BUILDDIR)
|
||||
@ -56,3 +55,8 @@ endif
|
||||
ifneq (,$(filter tinydtls_ecc,$(USEMODULE)))
|
||||
DIRS += $(PKG_BUILDDIR)/ecc
|
||||
endif
|
||||
|
||||
# For now contrib only contains sock_dtls adaption
|
||||
ifneq (,$(filter tinydtls_sock_dtls,$(USEMODULE)))
|
||||
DIRS += $(RIOTBASE)/pkg/tinydtls/contrib
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user