From 5790e061c7f1aca516309a306fe4cb373cb5af69 Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Wed, 25 Sep 2019 10:36:31 +0200 Subject: [PATCH] makefiles/boot/riotboot.mk: use BUILD_FILES - Fixes compiling in docker by using BUILD_FILES to define extra files to be built --- makefiles/boot/riotboot.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/makefiles/boot/riotboot.mk b/makefiles/boot/riotboot.mk index f07d049617..a1281422d0 100644 --- a/makefiles/boot/riotboot.mk +++ b/makefiles/boot/riotboot.mk @@ -49,9 +49,7 @@ SLOT_RIOT_ELFS = $(BINDIR_APP)-slot0.elf $(BINDIR_APP)-slot1.elf # ensure both slot elf files are always linked # this ensures that both "make test" and "make test-murdock" can rely on them # being present without having to trigger re-compilation. -ifneq (1, $(RIOTNOLINK)) -link: $(SLOT_RIOT_ELFS) -endif +BUILD_FILES += $(SLOT_RIOT_ELFS) # Create binary target with RIOT header $(SLOT_RIOT_BINS): %.$(APP_VER).riot.bin: %.hdr %.bin