Skip to content
Snippets Groups Projects
Unverified Commit 7467d1be authored by Gaëtan Harter's avatar Gaëtan Harter
Browse files

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.
parent 1642a031
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
# This file contains helper targets used by the CI. # This file contains helper targets used by the CI.
# #
# (HACK) get actual flash binary from FFLAGS. # (HACK) get actual flash binary from FFLAGS if not defined.
FLASHFILE:=$(filter $(HEXFILE) $(ELFFILE:.elf=.bin) $(ELFFILE),$(FFLAGS)) FLASHFILE ?= $(filter $(HEXFILE) $(ELFFILE:.elf=.bin) $(ELFFILE),$(FFLAGS))
# #
# This target will run "make test" on the CI cluster. # This target will run "make test" on the CI cluster.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment