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:
parent
a1cbc92b4f
commit
1fc6fd9694
@ -1527,4 +1527,7 @@
|
|||||||
an internal OS interface (up_spiinitialize), that has been
|
an internal OS interface (up_spiinitialize), that has been
|
||||||
obsoleted. That's what happens when you violate interface
|
obsoleted. That's what happens when you violate interface
|
||||||
boundaries between the application and the OS (2016-01-27).
|
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).
|
||||||
|
@ -58,7 +58,7 @@ endif
|
|||||||
|
|
||||||
# Directories
|
# Directories
|
||||||
|
|
||||||
PLATFORMDIR = $(APPDIR)$(DELIM)platform$(DELIM)board
|
PLATFORMDIR = board
|
||||||
DUMMYDIR = $(APPDIR)$(DELIM)platform$(DELIM)dummy
|
DUMMYDIR = $(APPDIR)$(DELIM)platform$(DELIM)dummy
|
||||||
|
|
||||||
ifeq ($(CONFIG_ARCH_BOARD_CUSTOM),y)
|
ifeq ($(CONFIG_ARCH_BOARD_CUSTOM),y)
|
||||||
|
Loading…
Reference in New Issue
Block a user