apps/platform/Makefile: Use a relative path to the board directory link rather than the absolute path. For Cygwin, the absolute would would need converted with cygpath. But just using the relative path is a simpler solution.

This commit is contained in:
Gregory Nutt 2016-01-27 14:19:47 -06:00
parent a1cbc92b4f
commit 1fc6fd9694
2 changed files with 5 additions and 2 deletions

View File

@ -1527,4 +1527,7 @@
an internal OS interface (up_spiinitialize), that has been
obsoleted. That's what happens when you violate interface
boundaries between the application and the OS (2016-01-27).
* apps/platform/Makefile: Use a relative path to the board
directory link rather than the absolute path. For Cygwin, the
absolute would would need converted with cygpath. But just using
the relative path is a simpler solution (2016-01-27).

View File

@ -58,7 +58,7 @@ endif
# Directories
PLATFORMDIR = $(APPDIR)$(DELIM)platform$(DELIM)board
PLATFORMDIR = board
DUMMYDIR = $(APPDIR)$(DELIM)platform$(DELIM)dummy
ifeq ($(CONFIG_ARCH_BOARD_CUSTOM),y)