Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Compatibility Concerns: Fix typo in PR-5496 description.

...

Code Block
ifeq ($(CONFIG_CYGWIN_WINTOOL),y)
  ARCHSCRIPT = -T "${shell cygpath -w $(BOARD_DIR)$(DELIM)scripts$(DELIM)tfm-ns.ld}"
else
  ARCHSCRIPT = -T$(BOARD_DIR)$(DELIM)scripts$(DELIM)tfm-ns.ld
endif

And can instead set append the variable just one, like this:

Code Block
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)tfm-ns.ld

Note the assignment is changed to append (from = to +=).

All boards in the NuttX tree have been updated.

...