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

makefiles/murdock.inc.mk: do not overwrite FLASHFILE if set

If FLASHFILE is set keep the original value.

It changes the variable from an immediate to a deferred variable but if
murdocks keeps working there is no issue.
This commit is contained in:
Gaëtan Harter 2019-03-01 16:11:01 +01:00
parent 1642a03125
commit 7467d1be75
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -2,8 +2,8 @@
# This file contains helper targets used by the CI.
#
# (HACK) get actual flash binary from FFLAGS.
FLASHFILE:=$(filter $(HEXFILE) $(ELFFILE:.elf=.bin) $(ELFFILE),$(FFLAGS))
# (HACK) get actual flash binary from FFLAGS if not defined.
FLASHFILE ?= $(filter $(HEXFILE) $(ELFFILE:.elf=.bin) $(ELFFILE),$(FFLAGS))
#
# This target will run "make test" on the CI cluster.