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

sys/Makefile.include: fix riotboot headers include

- If riotboot_slot wasn't included explicitly, e.g. when
  only setting FEATURES_REQUIRED+=riotboot riotboot slot
  definitions were not present and therefore build failed.
This commit is contained in:
francisco 2019-05-23 13:25:49 +02:00
parent 96d94000f4
commit cfcb863ec6

View File

@ -77,7 +77,7 @@ ifneq (,$(filter printf_float,$(USEMODULE)))
endif
endif
ifneq (,$(filter riotboot_%,$(USEMODULE)))
ifneq (,$(filter riotboot,$(FEATURES_USED)))
include $(RIOTBASE)/sys/riotboot/Makefile.include
endif