From 66dddadfd2328f203cbb2db8393a1dbc4dd30c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=B3th=20B=C3=A9la?= Date: Wed, 18 Jul 2018 15:52:50 +0200 Subject: [PATCH] Change ../../libapps paths in TizenRT configuration Makefile (#2429) This change helps the symlink method to work also with TizenRT/jerryscript configuration, while maintaining the old cp method usability. JerryScript-DCO-1.0-Signed-off-by: Bela Toth tbela@inf.u-szeged.hu --- targets/tizenrt-artik053/apps/jerryscript/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/tizenrt-artik053/apps/jerryscript/Makefile b/targets/tizenrt-artik053/apps/jerryscript/Makefile index 592ea132b..fcf0787f4 100644 --- a/targets/tizenrt-artik053/apps/jerryscript/Makefile +++ b/targets/tizenrt-artik053/apps/jerryscript/Makefile @@ -103,12 +103,12 @@ ifneq ($(CONFIG_BUILD_KERNEL),y) endif ifeq ($(CONFIG_WINDOWS_NATIVE),y) - BIN = ..\..\libapps$(LIBEXT) + BIN = $(APPDIR)\libapps$(LIBEXT) else ifeq ($(WINTOOL),y) - BIN = ..\\..\\libapps$(LIBEXT) + BIN = $(APPDIR)\\libapps$(LIBEXT) else - BIN = ../../libapps$(LIBEXT) + BIN = $(APPDIR)/libapps$(LIBEXT) endif endif