From 6233de96b9ffc421f695850e9a452ceba8ed21bb Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Fri, 17 Feb 2012 11:51:56 -0500 Subject: [PATCH] main makefile: remove unnecessary realpath because it breaks on cygwin --- Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.include b/Makefile.include index e8251c921..6a15b3de2 100644 --- a/Makefile.include +++ b/Makefile.include @@ -109,7 +109,7 @@ endif ### Include target makefile (TODO Unsafe?) -target_makefile := $(wildcard ${realpath $(CONTIKI)}/platform/$(TARGET)/Makefile.$(TARGET) ${foreach TDIR, $(TARGETDIRS), $(TDIR)/$(TARGET)/Makefile.$(TARGET)}) +target_makefile := $(wildcard $(CONTIKI)/platform/$(TARGET)/Makefile.$(TARGET) ${foreach TDIR, $(TARGETDIRS), $(TDIR)/$(TARGET)/Makefile.$(TARGET)}) # Check if the target makefile exists, and create the object directory if necessary. ifeq ($(strip $(target_makefile)),)