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

Merge pull request #13346 from maribu/fix-dependency-resolution

Makefile.dep: Fix dependency resolution
This commit is contained in:
benpicco 2020-02-12 15:56:51 +01:00 committed by GitHub
commit f3d5f64163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1046,13 +1046,13 @@ ifneq (,$(filter periph_%, $(USEMODULE)))
USEMODULE += periph_common
endif
ifneq (,$(filter ecc_%,$(USEMODULE)))
USEMODULE += ecc
endif
# recursively catch transitive dependencies
USEMODULE := $(sort $(USEMODULE))
USEPKG := $(sort $(USEPKG))
ifneq ($(OLD_USEMODULE) $(OLD_USEPKG),$(USEMODULE) $(USEPKG))
include $(RIOTBASE)/Makefile.dep
endif
ifneq (,$(filter ecc_%,$(USEMODULE)))
USEMODULE += ecc
endif