1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/tinycrypt: Avoid pulling in default_CSPRNG

... which would be provided through ecc_platform_specific.c but would
only so happen to work on native -- and conflicts with any
default_CSPRNG provided in the future (eg. through a newer libcose
packet).
This commit is contained in:
chrysn 2021-05-10 17:31:17 +02:00
parent 0c3ece3ce8
commit f65a9e1306
2 changed files with 3 additions and 2 deletions

View File

@ -5,5 +5,5 @@ PKG_LICENSE=BSD-3-Clause
include $(RIOTBASE)/pkg/pkg.mk
all:
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/lib/source/ -f $(RIOTBASE)/Makefile.base MODULE=$(PKG_NAME)
all: Makefile.tinycrypt
$(QQ)"$(MAKE)" -C $(PKG_SOURCE_DIR)/lib/source/ -f $(CURDIR)/Makefile.tinycrypt -f $(RIOTBASE)/Makefile.base MODULE=$(PKG_NAME)

View File

@ -0,0 +1 @@
SRC = $(filter-out ecc_platform_specific.c,$(wildcard *.c))