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:
parent
1642a03125
commit
7467d1be75
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user