From 1fc6fd969442041a2b337816d532b9faf3d11add Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 27 Jan 2016 14:19:47 -0600 Subject: [PATCH] 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. --- ChangeLog.txt | 5 ++++- platform/Makefile | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 1d3761257..f3d6a151f 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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). diff --git a/platform/Makefile b/platform/Makefile index 8b69d976b..0e811ffc7 100644 --- a/platform/Makefile +++ b/platform/Makefile @@ -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)